Package com.sodius.mdw.metamodel.uml21
Class ObjectNodeOrderingKind
- java.lang.Object
-
- org.eclipse.emf.common.util.AbstractEnumerator
-
- com.sodius.mdw.metamodel.uml21.ObjectNodeOrderingKind
-
- All Implemented Interfaces:
Serializable
,org.eclipse.emf.common.util.Enumerator
public final class ObjectNodeOrderingKind extends org.eclipse.emf.common.util.AbstractEnumerator
A representation of the literals of the enumeration 'Object Node Ordering Kind', and utility methods for working with them. ObjectNodeOrderingKind is an enumeration indicating queuing order within a node.
-
-
Field Summary
Fields Modifier and Type Field Description static int
FIFO
The 'FIFO' literal value.static ObjectNodeOrderingKind
FIFO_LITERAL
The 'FIFO' literal object.static int
LIFO
The 'LIFO' literal value.static ObjectNodeOrderingKind
LIFO_LITERAL
The 'LIFO' literal object.static int
ORDERED
The 'Ordered' literal value.static ObjectNodeOrderingKind
ORDERED_LITERAL
The 'Ordered' literal object.static int
UNORDERED
The 'Unordered' literal value.static ObjectNodeOrderingKind
UNORDERED_LITERAL
The 'Unordered' literal object.static List
VALUES
A public read-only list of all the 'Object Node Ordering Kind' enumerators.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ObjectNodeOrderingKind
get(int value)
Returns the 'Object Node Ordering Kind' literal with the specified integer value.static ObjectNodeOrderingKind
get(String literal)
Returns the 'Object Node Ordering Kind' literal with the specified literal value.static ObjectNodeOrderingKind
getByName(String name)
Returns the 'Object Node Ordering Kind' literal with the specified name.
-
-
-
Field Detail
-
UNORDERED
public static final int UNORDERED
The 'Unordered' literal value. Indicates that object node tokens are unordered.- See Also:
UNORDERED_LITERAL
, Constant Field Values
-
ORDERED
public static final int ORDERED
The 'Ordered' literal value. Indicates that object node tokens are ordered.- See Also:
ORDERED_LITERAL
, Constant Field Values
-
LIFO
public static final int LIFO
The 'LIFO' literal value. Indicates that object node tokens are queued in a last in, first out manner.- See Also:
LIFO_LITERAL
, Constant Field Values
-
FIFO
public static final int FIFO
The 'FIFO' literal value. Indicates that object node tokens are queued in a first in, first out manner.- See Also:
FIFO_LITERAL
, Constant Field Values
-
UNORDERED_LITERAL
public static final ObjectNodeOrderingKind UNORDERED_LITERAL
The 'Unordered' literal object.- See Also:
UNORDERED
-
ORDERED_LITERAL
public static final ObjectNodeOrderingKind ORDERED_LITERAL
The 'Ordered' literal object.- See Also:
ORDERED
-
LIFO_LITERAL
public static final ObjectNodeOrderingKind LIFO_LITERAL
The 'LIFO' literal object.- See Also:
LIFO
-
FIFO_LITERAL
public static final ObjectNodeOrderingKind FIFO_LITERAL
The 'FIFO' literal object.- See Also:
FIFO
-
VALUES
public static final List VALUES
A public read-only list of all the 'Object Node Ordering Kind' enumerators.
-
-
Method Detail
-
get
public static ObjectNodeOrderingKind get(String literal)
Returns the 'Object Node Ordering Kind' literal with the specified literal value.
-
getByName
public static ObjectNodeOrderingKind getByName(String name)
Returns the 'Object Node Ordering Kind' literal with the specified name.
-
get
public static ObjectNodeOrderingKind get(int value)
Returns the 'Object Node Ordering Kind' literal with the specified integer value.
-
-