Class StateKind
- java.lang.Object
-
- org.eclipse.emf.common.util.AbstractEnumerator
-
- com.sodius.mdw.metamodel.rhapsody.StateKind
-
- All Implemented Interfaces:
java.io.Serializable
,org.eclipse.emf.common.util.Enumerator
public final class StateKind extends org.eclipse.emf.common.util.AbstractEnumerator
A representation of the literals of the enumeration 'State Kind', and utility methods for working with them.- See Also:
RhapsodyPackage.getStateKind()
, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static int
ACCEPT_EVENT_ACTION
The 'Accept event action' literal value.static StateKind
ACCEPT_EVENT_ACTION_LITERAL
The 'Accept event action' literal object.static int
ACTION
The 'Action' literal value.static StateKind
ACTION_LITERAL
The 'Action' literal object.static int
AND
The 'And' literal value.static StateKind
AND_LITERAL
The 'And' literal object.static int
BLOCK
The 'Block' literal value.static StateKind
BLOCK_LITERAL
The 'Block' literal object.static int
CALL_OPERATION
The 'Call operation' literal value.static StateKind
CALL_OPERATION_LITERAL
The 'Call operation' literal object.static int
EVENT_STATE
The 'Event state' literal value.static StateKind
EVENT_STATE_LITERAL
The 'Event state' literal object.static int
FLOW_FINAL
The 'Flow final' literal value.static StateKind
FLOW_FINAL_LITERAL
The 'Flow final' literal object.static int
LOCAL_TERMINATION
The 'Local termination' literal value.static StateKind
LOCAL_TERMINATION_LITERAL
The 'Local termination' literal object.static int
OBJECT_FLOW
The 'Object flow' literal value.static StateKind
OBJECT_FLOW_LITERAL
The 'Object flow' literal object.static int
OR
The 'Or' literal value.static StateKind
OR_LITERAL
The 'Or' literal object.static int
REFERENCE_ACTIVITY
The 'Reference activity' literal value.static StateKind
REFERENCE_ACTIVITY_LITERAL
The 'Reference activity' literal object.static int
SUB_ACTIVITY
The 'Sub activity' literal value.static StateKind
SUB_ACTIVITY_LITERAL
The 'Sub activity' literal object.static int
UNKNOWN
The 'Unknown' literal value.static StateKind
UNKNOWN_LITERAL
The 'Unknown' literal object.static java.util.List
VALUES
A public read-only list of all the 'State Kind' enumerators.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StateKind
get(int value)
Returns the 'State Kind' literal with the specified integer value.static StateKind
get(java.lang.String literal)
Returns the 'State Kind' literal with the specified literal value.static StateKind
getByName(java.lang.String name)
Returns the 'State Kind' literal with the specified name.
-
-
-
Field Detail
-
OR
public static final int OR
The 'Or' literal value.- See Also:
OR_LITERAL
, Constant Field Values
-
AND
public static final int AND
The 'And' literal value.- See Also:
AND_LITERAL
, Constant Field Values
-
ACTION
public static final int ACTION
The 'Action' literal value.- See Also:
ACTION_LITERAL
, Constant Field Values
-
OBJECT_FLOW
public static final int OBJECT_FLOW
The 'Object flow' literal value.- See Also:
OBJECT_FLOW_LITERAL
, Constant Field Values
-
BLOCK
public static final int BLOCK
The 'Block' literal value.- See Also:
BLOCK_LITERAL
, Constant Field Values
-
SUB_ACTIVITY
public static final int SUB_ACTIVITY
The 'Sub activity' literal value.- See Also:
SUB_ACTIVITY_LITERAL
, Constant Field Values
-
REFERENCE_ACTIVITY
public static final int REFERENCE_ACTIVITY
The 'Reference activity' literal value.- See Also:
REFERENCE_ACTIVITY_LITERAL
, Constant Field Values
-
LOCAL_TERMINATION
public static final int LOCAL_TERMINATION
The 'Local termination' literal value.- See Also:
LOCAL_TERMINATION_LITERAL
, Constant Field Values
-
UNKNOWN
public static final int UNKNOWN
The 'Unknown' literal value.- See Also:
UNKNOWN_LITERAL
, Constant Field Values
-
EVENT_STATE
public static final int EVENT_STATE
The 'Event state' literal value.- See Also:
EVENT_STATE_LITERAL
, Constant Field Values
-
CALL_OPERATION
public static final int CALL_OPERATION
The 'Call operation' literal value.- See Also:
CALL_OPERATION_LITERAL
, Constant Field Values
-
ACCEPT_EVENT_ACTION
public static final int ACCEPT_EVENT_ACTION
The 'Accept event action' literal value.- See Also:
ACCEPT_EVENT_ACTION_LITERAL
, Constant Field Values
-
FLOW_FINAL
public static final int FLOW_FINAL
The 'Flow final' literal value.- See Also:
FLOW_FINAL_LITERAL
, Constant Field Values
-
ACTION_LITERAL
public static final StateKind ACTION_LITERAL
The 'Action' literal object.- See Also:
ACTION
-
OBJECT_FLOW_LITERAL
public static final StateKind OBJECT_FLOW_LITERAL
The 'Object flow' literal object.- See Also:
OBJECT_FLOW
-
BLOCK_LITERAL
public static final StateKind BLOCK_LITERAL
The 'Block' literal object.- See Also:
BLOCK
-
SUB_ACTIVITY_LITERAL
public static final StateKind SUB_ACTIVITY_LITERAL
The 'Sub activity' literal object.- See Also:
SUB_ACTIVITY
-
REFERENCE_ACTIVITY_LITERAL
public static final StateKind REFERENCE_ACTIVITY_LITERAL
The 'Reference activity' literal object.- See Also:
REFERENCE_ACTIVITY
-
LOCAL_TERMINATION_LITERAL
public static final StateKind LOCAL_TERMINATION_LITERAL
The 'Local termination' literal object.- See Also:
LOCAL_TERMINATION
-
UNKNOWN_LITERAL
public static final StateKind UNKNOWN_LITERAL
The 'Unknown' literal object.- See Also:
UNKNOWN
-
EVENT_STATE_LITERAL
public static final StateKind EVENT_STATE_LITERAL
The 'Event state' literal object.- See Also:
EVENT_STATE
-
CALL_OPERATION_LITERAL
public static final StateKind CALL_OPERATION_LITERAL
The 'Call operation' literal object.- See Also:
CALL_OPERATION
-
ACCEPT_EVENT_ACTION_LITERAL
public static final StateKind ACCEPT_EVENT_ACTION_LITERAL
The 'Accept event action' literal object.- See Also:
ACCEPT_EVENT_ACTION
-
FLOW_FINAL_LITERAL
public static final StateKind FLOW_FINAL_LITERAL
The 'Flow final' literal object.- See Also:
FLOW_FINAL
-
VALUES
public static final java.util.List VALUES
A public read-only list of all the 'State Kind' enumerators.
-
-
Method Detail
-
get
public static StateKind get(java.lang.String literal)
Returns the 'State Kind' literal with the specified literal value.- Parameters:
literal
- the literal.- Returns:
- the matching enumerator or
null
.
-
getByName
public static StateKind getByName(java.lang.String name)
Returns the 'State Kind' literal with the specified name.- Parameters:
name
- the name.- Returns:
- the matching enumerator or
null
.
-
get
public static StateKind get(int value)
Returns the 'State Kind' literal with the specified integer value.- Parameters:
value
- the integer value.- Returns:
- the matching enumerator or
null
.
-
-