public enum EnabledFlag extends java.lang.Enum<EnabledFlag>
EsxPackage.getEnabledFlag()
Enum Constant and Description |
---|
DISABLED
The 'Disabled' literal object.
|
ENABLED
The 'Enabled' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
DISABLED_VALUE
The 'Disabled' literal value.
|
static int |
ENABLED_VALUE
The 'Enabled' literal value.
|
static java.util.List<EnabledFlag> |
VALUES
A public read-only list of all the 'Enabled Flag' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static EnabledFlag |
get(int value)
Returns the 'Enabled Flag' literal with the specified integer value.
|
static EnabledFlag |
get(java.lang.String literal)
Returns the 'Enabled Flag' literal with the specified literal value.
|
static EnabledFlag |
getByName(java.lang.String name)
Returns the 'Enabled Flag' literal with the specified name.
|
java.lang.String |
getLiteral() |
java.lang.String |
getName() |
int |
getValue() |
java.lang.String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static EnabledFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnabledFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnabledFlag DISABLED
DISABLED_VALUE
public static final EnabledFlag ENABLED
ENABLED_VALUE
public static final int DISABLED_VALUE
If the meaning of 'Disabled' literal object isn't clear, there really should be more of a description here...
DISABLED
,
Constant Field Valuespublic static final int ENABLED_VALUE
If the meaning of 'Enabled' literal object isn't clear, there really should be more of a description here...
ENABLED
,
Constant Field Valuespublic static final java.util.List<EnabledFlag> VALUES
public static EnabledFlag[] values()
for (EnabledFlag c : EnabledFlag.values()) System.out.println(c);
public static EnabledFlag valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static EnabledFlag get(java.lang.String literal)
public static EnabledFlag getByName(java.lang.String name)
public static EnabledFlag get(int value)
public int getValue()
public java.lang.String getName()
public java.lang.String getLiteral()
public java.lang.String toString()
toString
in class java.lang.Enum<EnabledFlag>