public enum TransitionKind extends java.lang.Enum<TransitionKind> implements org.eclipse.emf.common.util.Enumerator
CapellacommonPackage.getTransitionKind()| Enum Constant and Description |
|---|
EXTERNAL
The 'External' literal object.
|
INTERNAL
The 'Internal' literal object.
|
LOCAL
The 'Local' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
EXTERNAL_VALUE
The 'External' literal value.
|
static int |
INTERNAL_VALUE
The 'Internal' literal value.
|
static int |
LOCAL_VALUE
The 'Local' literal value.
|
static java.util.List<TransitionKind> |
VALUES
A public read-only list of all the 'Transition Kind' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static TransitionKind |
get(int value)
Returns the 'Transition Kind' literal with the specified integer value.
|
static TransitionKind |
get(java.lang.String literal)
Returns the 'Transition Kind' literal with the specified literal value.
|
static TransitionKind |
getByName(java.lang.String name)
Returns the 'Transition 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 TransitionKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransitionKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransitionKind INTERNAL
INTERNAL_VALUEpublic static final TransitionKind LOCAL
LOCAL_VALUEpublic static final TransitionKind EXTERNAL
EXTERNAL_VALUEpublic static final int INTERNAL_VALUE
If the meaning of 'Internal' literal object isn't clear, there really should be more of a description here...
INTERNAL,
Constant Field Valuespublic static final int LOCAL_VALUE
If the meaning of 'Local' literal object isn't clear, there really should be more of a description here...
LOCAL,
Constant Field Valuespublic static final int EXTERNAL_VALUE
If the meaning of 'External' literal object isn't clear, there really should be more of a description here...
EXTERNAL,
Constant Field Valuespublic static final java.util.List<TransitionKind> VALUES
public static TransitionKind[] values()
for (TransitionKind c : TransitionKind.values()) System.out.println(c);
public static TransitionKind 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 TransitionKind get(java.lang.String literal)
literal - the literal.null.public static TransitionKind getByName(java.lang.String name)
name - the name.null.public static TransitionKind 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<TransitionKind>