public static enum ExtendedModeEnablement.Hidden extends Enum<ExtendedModeEnablement.Hidden>
ExtendedModeEnablement.Hiddens are present,
the first one of this list wins:
| Enum Constant and Description |
|---|
STRONG_HIDDEN
the mode is most certainly hidden
|
STRONG_VISIBLE
the mode is visible
|
UNCERTAIN
the strategy cannot decide, some other code will make the decision
|
WEAK_HIDDEN
the mode is probably hidden
|
WEAK_VISIBLE
the mode is probably visible
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isHidden()
Tells whether this
ExtendedModeEnablement.Hidden means "hidden" or "visible". |
ExtendedModeEnablement.Hidden |
strongest(ExtendedModeEnablement.Hidden other)
|
static ExtendedModeEnablement.Hidden |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExtendedModeEnablement.Hidden[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExtendedModeEnablement.Hidden STRONG_HIDDEN
public static final ExtendedModeEnablement.Hidden WEAK_HIDDEN
public static final ExtendedModeEnablement.Hidden UNCERTAIN
public static final ExtendedModeEnablement.Hidden WEAK_VISIBLE
public static final ExtendedModeEnablement.Hidden STRONG_VISIBLE
public static ExtendedModeEnablement.Hidden[] values()
for (ExtendedModeEnablement.Hidden c : ExtendedModeEnablement.Hidden.values()) System.out.println(c);
public static ExtendedModeEnablement.Hidden valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic boolean isHidden()
ExtendedModeEnablement.Hidden means "hidden" or "visible".true if this means "hidden".public ExtendedModeEnablement.Hidden strongest(ExtendedModeEnablement.Hidden other)
other - some other ExtendedModeEnablement.Hiddenthis and otherCopyright © 2018. All rights reserved.