public enum EnableStateKind extends java.lang.Enum<EnableStateKind> implements org.eclipse.emf.common.util.Enumerator
TracePackage.getEnableStateKind()
Enum Constant and Description |
---|
FREE
The 'Free' literal object
|
INDETERMINED
The 'Indetermined' literal object
|
NO_TICK
The 'No Tick' literal object
|
TICK
The 'Tick' literal object
|
Modifier and Type | Field and Description |
---|---|
static int |
FREE_VALUE
The 'Free' literal value
|
static int |
INDETERMINED_VALUE
The 'Indetermined' literal value
|
static int |
NO_TICK_VALUE
The 'No Tick' literal value
|
static int |
TICK_VALUE
The 'Tick' literal value
|
static java.util.List<EnableStateKind> |
VALUES
A public read-only list of all the 'Enable State Kind' enumerators
|
Modifier and Type | Method and Description |
---|---|
static EnableStateKind |
get(int value)
Returns the 'Enable State Kind' literal with the specified integer value
|
static EnableStateKind |
get(java.lang.String literal)
Returns the 'Enable State Kind' literal with the specified literal value
|
static EnableStateKind |
getByName(java.lang.String name)
Returns the 'Enable State Kind' 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 EnableStateKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnableStateKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnableStateKind TICK
TICK_VALUE
public static final EnableStateKind NO_TICK
NO_TICK_VALUE
public static final EnableStateKind FREE
FREE_VALUE
public static final EnableStateKind INDETERMINED
INDETERMINED_VALUE
public static final int TICK_VALUE
If the meaning of 'Tick' literal object isn't clear, there really should be more of a description here...
TICK
,
Constant Field Valuespublic static final int NO_TICK_VALUE
If the meaning of 'No Tick' literal object isn't clear, there really should be more of a description here...
NO_TICK
,
Constant Field Valuespublic static final int FREE_VALUE
If the meaning of 'Free' literal object isn't clear, there really should be more of a description here...
FREE
,
Constant Field Valuespublic static final int INDETERMINED_VALUE
If the meaning of 'Indetermined' literal object isn't clear, there really should be more of a description here...
INDETERMINED
,
Constant Field Valuespublic static final java.util.List<EnableStateKind> VALUES
public static EnableStateKind[] values()
for (EnableStateKind c : EnableStateKind.values()) System.out.println(c);
public static EnableStateKind 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 EnableStateKind get(java.lang.String literal)
public static EnableStateKind getByName(java.lang.String name)
public static EnableStateKind get(int value)
public int getValue()
getValue
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String getName()
getName
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String getLiteral()
getLiteral
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String toString()
toString
in class java.lang.Enum<EnableStateKind>