Class ActivationMode
- java.lang.Object
-
- org.eclipse.emf.common.util.AbstractEnumerator
-
- com.sodius.mdw.metamodel.rhapsody.ActivationMode
-
- All Implemented Interfaces:
java.io.Serializable
,org.eclipse.emf.common.util.Enumerator
public final class ActivationMode extends org.eclipse.emf.common.util.AbstractEnumerator
A representation of the literals of the enumeration 'Activation Mode', and utility methods for working with them.
-
-
Field Summary
Fields Modifier and Type Field Description static int
ACTIVATION_MODE_UNSPECIFIED
The 'Activation mode unspecified' literal value.static ActivationMode
ACTIVATION_MODE_UNSPECIFIED_LITERAL
The 'Activation mode unspecified' literal object.static int
INITIAL
The 'Initial' literal value.static ActivationMode
INITIAL_LITERAL
The 'Initial' literal object.static int
INVARIANT
The 'Invariant' literal value.static ActivationMode
INVARIANT_LITERAL
The 'Invariant' literal object.static int
UNKNOWN
The 'Unknown' literal value.static ActivationMode
UNKNOWN_LITERAL
The 'Unknown' literal object.static java.util.List
VALUES
A public read-only list of all the 'Activation Mode' enumerators.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ActivationMode
get(int value)
Returns the 'Activation Mode' literal with the specified integer value.static ActivationMode
get(java.lang.String literal)
Returns the 'Activation Mode' literal with the specified literal value.static ActivationMode
getByName(java.lang.String name)
Returns the 'Activation Mode' literal with the specified name.
-
-
-
Field Detail
-
INITIAL
public static final int INITIAL
The 'Initial' literal value.- See Also:
INITIAL_LITERAL
, Constant Field Values
-
INVARIANT
public static final int INVARIANT
The 'Invariant' literal value.- See Also:
INVARIANT_LITERAL
, Constant Field Values
-
ACTIVATION_MODE_UNSPECIFIED
public static final int ACTIVATION_MODE_UNSPECIFIED
The 'Activation mode unspecified' literal value.
-
UNKNOWN
public static final int UNKNOWN
The 'Unknown' literal value.- See Also:
UNKNOWN_LITERAL
, Constant Field Values
-
INITIAL_LITERAL
public static final ActivationMode INITIAL_LITERAL
The 'Initial' literal object.- See Also:
INITIAL
-
INVARIANT_LITERAL
public static final ActivationMode INVARIANT_LITERAL
The 'Invariant' literal object.- See Also:
INVARIANT
-
ACTIVATION_MODE_UNSPECIFIED_LITERAL
public static final ActivationMode ACTIVATION_MODE_UNSPECIFIED_LITERAL
The 'Activation mode unspecified' literal object.- See Also:
ACTIVATION_MODE_UNSPECIFIED
-
UNKNOWN_LITERAL
public static final ActivationMode UNKNOWN_LITERAL
The 'Unknown' literal object.- See Also:
UNKNOWN
-
VALUES
public static final java.util.List VALUES
A public read-only list of all the 'Activation Mode' enumerators.
-
-
Method Detail
-
get
public static ActivationMode get(java.lang.String literal)
Returns the 'Activation Mode' literal with the specified literal value.- Parameters:
literal
- the literal.- Returns:
- the matching enumerator or
null
.
-
getByName
public static ActivationMode getByName(java.lang.String name)
Returns the 'Activation Mode' literal with the specified name.- Parameters:
name
- the name.- Returns:
- the matching enumerator or
null
.
-
get
public static ActivationMode get(int value)
Returns the 'Activation Mode' literal with the specified integer value.- Parameters:
value
- the integer value.- Returns:
- the matching enumerator or
null
.
-
-