public enum FeatureConfigState extends Enum<FeatureConfigState> implements Enumerator
featureconfigPackage.getFeatureConfigState()| Enum Constant and Description |
|---|
DEFAULT
The 'DEFAULT' literal object.
|
NOT_SET
The 'NOT SET' literal object.
|
OVERRIDE
The 'OVERRIDE' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
DEFAULT_VALUE
The 'DEFAULT' literal value.
|
static int |
NOT_SET_VALUE
The 'NOT SET' literal value.
|
static int |
OVERRIDE_VALUE
The 'OVERRIDE' literal value.
|
static List<FeatureConfigState> |
VALUES
A public read-only list of all the 'Feature Config State' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static FeatureConfigState |
get(int value)
Returns the 'Feature Config State' literal with the specified integer value.
|
static FeatureConfigState |
get(String literal)
Returns the 'Feature Config State' literal with the specified literal value.
|
static FeatureConfigState |
getByName(String name)
Returns the 'Feature Config State' literal with the specified name.
|
String |
getLiteral() |
String |
getName() |
int |
getValue() |
String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static FeatureConfigState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FeatureConfigState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FeatureConfigState NOT_SET
NOT_SET_VALUEpublic static final FeatureConfigState OVERRIDE
OVERRIDE_VALUEpublic static final FeatureConfigState DEFAULT
DEFAULT_VALUEpublic static final int NOT_SET_VALUE
If the meaning of 'NOT SET' literal object isn't clear, there really should be more of a description here...
NOT_SET,
Constant Field Valuespublic static final int OVERRIDE_VALUE
If the meaning of 'OVERRIDE' literal object isn't clear, there really should be more of a description here...
OVERRIDE,
Constant Field Valuespublic static final int DEFAULT_VALUE
If the meaning of 'DEFAULT' literal object isn't clear, there really should be more of a description here...
DEFAULT,
Constant Field Valuespublic static final List<FeatureConfigState> VALUES
public static FeatureConfigState[] values()
for (FeatureConfigState c : FeatureConfigState.values()) System.out.println(c);
public static FeatureConfigState 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 static FeatureConfigState get(String literal)
public static FeatureConfigState getByName(String name)
public static FeatureConfigState get(int value)
public int getValue()
getValue in interface Enumeratorpublic String getName()
getName in interface Enumeratorpublic String getLiteral()
getLiteral in interface Enumeratorpublic String toString()
toString in class Enum<FeatureConfigState>