public enum FxChain extends java.lang.Enum<FxChain>
EsxPackage.getFxChain()
Enum Constant and Description |
---|
FX_12
The 'Fx 12' literal object.
|
FX_123
The 'Fx 123' literal object.
|
FX_23
The 'Fx 23' literal object.
|
NONE
The 'None' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
FX_12_VALUE
The 'Fx 12' literal value.
|
static int |
FX_123_VALUE
The 'Fx 123' literal value.
|
static int |
FX_23_VALUE
The 'Fx 23' literal value.
|
static int |
NONE_VALUE
The 'None' literal value.
|
static java.util.List<FxChain> |
VALUES
A public read-only list of all the 'Fx Chain' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static FxChain |
get(int value)
Returns the 'Fx Chain' literal with the specified integer value.
|
static FxChain |
get(java.lang.String literal)
Returns the 'Fx Chain' literal with the specified literal value.
|
static FxChain |
getByName(java.lang.String name)
Returns the 'Fx Chain' 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 FxChain |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FxChain[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FxChain NONE
NONE_VALUE
public static final FxChain FX_12
FX_12_VALUE
public static final FxChain FX_23
FX_23_VALUE
public static final FxChain FX_123
FX_123_VALUE
public static final int NONE_VALUE
If the meaning of 'None' literal object isn't clear, there really should be more of a description here...
NONE
,
Constant Field Valuespublic static final int FX_12_VALUE
If the meaning of 'Fx 12' literal object isn't clear, there really should be more of a description here...
FX_12
,
Constant Field Valuespublic static final int FX_23_VALUE
If the meaning of 'Fx 23' literal object isn't clear, there really should be more of a description here...
FX_23
,
Constant Field Valuespublic static final int FX_123_VALUE
If the meaning of 'Fx 123' literal object isn't clear, there really should be more of a description here...
FX_123
,
Constant Field Valuespublic static final java.util.List<FxChain> VALUES
public static FxChain[] values()
for (FxChain c : FxChain.values()) System.out.println(c);
public static FxChain 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 FxChain get(java.lang.String literal)
public static FxChain getByName(java.lang.String name)
public static FxChain 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<FxChain>