public enum ScenarioKind extends java.lang.Enum<ScenarioKind> implements org.eclipse.emf.common.util.Enumerator
InteractionPackage.getScenarioKind()| Enum Constant and Description |
|---|
DATA_FLOW
The 'DATA FLOW' literal object.
|
FUNCTIONAL
The 'FUNCTIONAL' literal object.
|
INTERACTION
The 'INTERACTION' literal object.
|
INTERFACE
The 'INTERFACE' literal object.
|
UNSET
The 'UNSET' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
DATA_FLOW_VALUE
The 'DATA FLOW' literal value.
|
static int |
FUNCTIONAL_VALUE
The 'FUNCTIONAL' literal value.
|
static int |
INTERACTION_VALUE
The 'INTERACTION' literal value.
|
static int |
INTERFACE_VALUE
The 'INTERFACE' literal value.
|
static int |
UNSET_VALUE
The 'UNSET' literal value.
|
static java.util.List<ScenarioKind> |
VALUES
A public read-only list of all the 'Scenario Kind' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static ScenarioKind |
get(int value)
Returns the 'Scenario Kind' literal with the specified integer value.
|
static ScenarioKind |
get(java.lang.String literal)
Returns the 'Scenario Kind' literal with the specified literal value.
|
static ScenarioKind |
getByName(java.lang.String name)
Returns the 'Scenario 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 ScenarioKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScenarioKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScenarioKind UNSET
UNSET_VALUEpublic static final ScenarioKind INTERFACE
INTERFACE_VALUEpublic static final ScenarioKind DATA_FLOW
DATA_FLOW_VALUEpublic static final ScenarioKind INTERACTION
INTERACTION_VALUEpublic static final ScenarioKind FUNCTIONAL
FUNCTIONAL_VALUEpublic static final int UNSET_VALUE
If the meaning of 'UNSET' literal object isn't clear, there really should be more of a description here...
UNSET,
Constant Field Valuespublic static final int INTERFACE_VALUE
If the meaning of 'INTERFACE' literal object isn't clear, there really should be more of a description here...
INTERFACE,
Constant Field Valuespublic static final int DATA_FLOW_VALUE
If the meaning of 'DATA FLOW' literal object isn't clear, there really should be more of a description here...
DATA_FLOW,
Constant Field Valuespublic static final int INTERACTION_VALUE
If the meaning of 'INTERACTION' literal object isn't clear, there really should be more of a description here...
INTERACTION,
Constant Field Valuespublic static final int FUNCTIONAL_VALUE
If the meaning of 'FUNCTIONAL' literal object isn't clear, there really should be more of a description here...
FUNCTIONAL,
Constant Field Valuespublic static final java.util.List<ScenarioKind> VALUES
public static ScenarioKind[] values()
for (ScenarioKind c : ScenarioKind.values()) System.out.println(c);
public static ScenarioKind 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 ScenarioKind get(java.lang.String literal)
literal - the literal.null.public static ScenarioKind getByName(java.lang.String name)
name - the name.null.public static ScenarioKind 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<ScenarioKind>