public enum FiredStateKind extends java.lang.Enum<FiredStateKind> implements org.eclipse.emf.common.util.Enumerator
TracePackage.getFiredStateKind()
Enum Constant and Description |
---|
NO_TICK
The 'No Tick' literal object
|
TICK
The 'Tick' literal object
|
Modifier and Type | Field and Description |
---|---|
static int |
NO_TICK_VALUE
The 'No Tick' literal value
|
static int |
TICK_VALUE
The 'Tick' literal value
|
static java.util.List<FiredStateKind> |
VALUES
A public read-only list of all the 'Fired State Kind' enumerators
|
Modifier and Type | Method and Description |
---|---|
static FiredStateKind |
get(int value)
Returns the 'Fired State Kind' literal with the specified integer value
|
static FiredStateKind |
get(java.lang.String literal)
Returns the 'Fired State Kind' literal with the specified literal value
|
static FiredStateKind |
getByName(java.lang.String name)
Returns the 'Fired 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 FiredStateKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FiredStateKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FiredStateKind TICK
TICK_VALUE
public static final FiredStateKind NO_TICK
NO_TICK_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 java.util.List<FiredStateKind> VALUES
public static FiredStateKind[] values()
for (FiredStateKind c : FiredStateKind.values()) System.out.println(c);
public static FiredStateKind 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 FiredStateKind get(java.lang.String literal)
public static FiredStateKind getByName(java.lang.String name)
public static FiredStateKind 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<FiredStateKind>