public enum ObjectNodeOrderingKind extends java.lang.Enum<ObjectNodeOrderingKind> implements org.eclipse.emf.common.util.Enumerator
| Enum Constant and Description |
|---|
FIFO
The 'FIFO' literal object.
|
LIFO
The 'LIFO' literal object.
|
ORDERED
The 'Ordered' literal object.
|
UNORDERED
The 'Unordered' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
FIFO_VALUE
The 'FIFO' literal value.
|
static int |
LIFO_VALUE
The 'LIFO' literal value.
|
static int |
ORDERED_VALUE
The 'Ordered' literal value.
|
static int |
UNORDERED_VALUE
The 'Unordered' literal value.
|
static java.util.List<ObjectNodeOrderingKind> |
VALUES
A public read-only list of all the 'Object Node Ordering Kind' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static ObjectNodeOrderingKind |
get(int value)
Returns the 'Object Node Ordering Kind' literal with the specified integer value.
|
static ObjectNodeOrderingKind |
get(java.lang.String literal)
Returns the 'Object Node Ordering Kind' literal with the specified literal value.
|
static ObjectNodeOrderingKind |
getByName(java.lang.String name)
Returns the 'Object Node Ordering 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 ObjectNodeOrderingKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ObjectNodeOrderingKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectNodeOrderingKind FIFO
FIFO_VALUEpublic static final ObjectNodeOrderingKind LIFO
LIFO_VALUEpublic static final ObjectNodeOrderingKind ORDERED
ORDERED_VALUEpublic static final ObjectNodeOrderingKind UNORDERED
UNORDERED_VALUEpublic static final int FIFO_VALUE
If the meaning of 'FIFO' literal object isn't clear, there really should be more of a description here...
FIFO,
Constant Field Valuespublic static final int LIFO_VALUE
If the meaning of 'LIFO' literal object isn't clear, there really should be more of a description here...
LIFO,
Constant Field Valuespublic static final int ORDERED_VALUE
If the meaning of 'Ordered' literal object isn't clear, there really should be more of a description here...
ORDERED,
Constant Field Valuespublic static final int UNORDERED_VALUE
If the meaning of 'Unordered' literal object isn't clear, there really should be more of a description here...
UNORDERED,
Constant Field Valuespublic static final java.util.List<ObjectNodeOrderingKind> VALUES
public static ObjectNodeOrderingKind[] values()
for (ObjectNodeOrderingKind c : ObjectNodeOrderingKind.values()) System.out.println(c);
public static ObjectNodeOrderingKind 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 ObjectNodeOrderingKind get(java.lang.String literal)
literal - the literal.null.public static ObjectNodeOrderingKind getByName(java.lang.String name)
name - the name.null.public static ObjectNodeOrderingKind get(int value)
value - the integer value.null.public int getValue()
getValue in interface org.eclipse.emf.common.util.Enumeratorpublic java.lang.String getName()
getName in interface org.eclipse.emf.common.util.Enumeratorpublic java.lang.String getLiteral()
getLiteral in interface org.eclipse.emf.common.util.Enumeratorpublic java.lang.String toString()
toString in class java.lang.Enum<ObjectNodeOrderingKind>