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.AbstractEnumeratorA 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 intACTIVATION_MODE_UNSPECIFIEDThe 'Activation mode unspecified' literal value.static ActivationModeACTIVATION_MODE_UNSPECIFIED_LITERALThe 'Activation mode unspecified' literal object.static intINITIALThe 'Initial' literal value.static ActivationModeINITIAL_LITERALThe 'Initial' literal object.static intINVARIANTThe 'Invariant' literal value.static ActivationModeINVARIANT_LITERALThe 'Invariant' literal object.static intUNKNOWNThe 'Unknown' literal value.static ActivationModeUNKNOWN_LITERALThe 'Unknown' literal object.static java.util.ListVALUESA public read-only list of all the 'Activation Mode' enumerators.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ActivationModeget(int value)Returns the 'Activation Mode' literal with the specified integer value.static ActivationModeget(java.lang.String literal)Returns the 'Activation Mode' literal with the specified literal value.static ActivationModegetByName(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.
-
-