public enum InteractionOperatorKind extends java.lang.Enum<InteractionOperatorKind> implements org.eclipse.emf.common.util.Enumerator
| Enum Constant and Description |
|---|
ALT
The 'ALT' literal object.
|
ASSERT
The 'ASSERT' literal object.
|
CONSIDER
The 'CONSIDER' literal object.
|
CRITICAL
The 'CRITICAL' literal object.
|
IGNORE
The 'IGNORE' literal object.
|
LOOP
The 'LOOP' literal object.
|
NEG
The 'NEG' literal object.
|
OPT
The 'OPT' literal object.
|
PAR
The 'PAR' literal object.
|
SEQ
The 'SEQ' literal object.
|
STRICT
The 'STRICT' literal object.
|
UNSET
The 'UNSET' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
ALT_VALUE
The 'ALT' literal value.
|
static int |
ASSERT_VALUE
The 'ASSERT' literal value.
|
static int |
CONSIDER_VALUE
The 'CONSIDER' literal value.
|
static int |
CRITICAL_VALUE
The 'CRITICAL' literal value.
|
static int |
IGNORE_VALUE
The 'IGNORE' literal value.
|
static int |
LOOP_VALUE
The 'LOOP' literal value.
|
static int |
NEG_VALUE
The 'NEG' literal value.
|
static int |
OPT_VALUE
The 'OPT' literal value.
|
static int |
PAR_VALUE
The 'PAR' literal value.
|
static int |
SEQ_VALUE
The 'SEQ' literal value.
|
static int |
STRICT_VALUE
The 'STRICT' literal value.
|
static int |
UNSET_VALUE
The 'UNSET' literal value.
|
static java.util.List<InteractionOperatorKind> |
VALUES
A public read-only list of all the 'Operator Kind' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static InteractionOperatorKind |
get(int value)
Returns the 'Operator Kind' literal with the specified integer value.
|
static InteractionOperatorKind |
get(java.lang.String literal)
Returns the 'Operator Kind' literal with the specified literal value.
|
static InteractionOperatorKind |
getByName(java.lang.String name)
Returns the 'Operator 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 InteractionOperatorKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InteractionOperatorKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InteractionOperatorKind UNSET
UNSET_VALUEpublic static final InteractionOperatorKind ALT
ALT_VALUEpublic static final InteractionOperatorKind OPT
OPT_VALUEpublic static final InteractionOperatorKind PAR
PAR_VALUEpublic static final InteractionOperatorKind LOOP
LOOP_VALUEpublic static final InteractionOperatorKind CRITICAL
CRITICAL_VALUEpublic static final InteractionOperatorKind NEG
NEG_VALUEpublic static final InteractionOperatorKind ASSERT
ASSERT_VALUEpublic static final InteractionOperatorKind STRICT
STRICT_VALUEpublic static final InteractionOperatorKind SEQ
SEQ_VALUEpublic static final InteractionOperatorKind IGNORE
IGNORE_VALUEpublic static final InteractionOperatorKind CONSIDER
CONSIDER_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 ALT_VALUE
If the meaning of 'ALT' literal object isn't clear, there really should be more of a description here...
ALT,
Constant Field Valuespublic static final int OPT_VALUE
If the meaning of 'OPT' literal object isn't clear, there really should be more of a description here...
OPT,
Constant Field Valuespublic static final int PAR_VALUE
If the meaning of 'PAR' literal object isn't clear, there really should be more of a description here...
PAR,
Constant Field Valuespublic static final int LOOP_VALUE
If the meaning of 'LOOP' literal object isn't clear, there really should be more of a description here...
LOOP,
Constant Field Valuespublic static final int CRITICAL_VALUE
If the meaning of 'CRITICAL' literal object isn't clear, there really should be more of a description here...
CRITICAL,
Constant Field Valuespublic static final int NEG_VALUE
If the meaning of 'NEG' literal object isn't clear, there really should be more of a description here...
NEG,
Constant Field Valuespublic static final int ASSERT_VALUE
If the meaning of 'ASSERT' literal object isn't clear, there really should be more of a description here...
ASSERT,
Constant Field Valuespublic static final int STRICT_VALUE
If the meaning of 'STRICT' literal object isn't clear, there really should be more of a description here...
STRICT,
Constant Field Valuespublic static final int SEQ_VALUE
If the meaning of 'SEQ' literal object isn't clear, there really should be more of a description here...
SEQ,
Constant Field Valuespublic static final int IGNORE_VALUE
If the meaning of 'IGNORE' literal object isn't clear, there really should be more of a description here...
IGNORE,
Constant Field Valuespublic static final int CONSIDER_VALUE
If the meaning of 'CONSIDER' literal object isn't clear, there really should be more of a description here...
CONSIDER,
Constant Field Valuespublic static final java.util.List<InteractionOperatorKind> VALUES
public static InteractionOperatorKind[] values()
for (InteractionOperatorKind c : InteractionOperatorKind.values()) System.out.println(c);
public static InteractionOperatorKind 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 InteractionOperatorKind get(java.lang.String literal)
literal - the literal.null.public static InteractionOperatorKind getByName(java.lang.String name)
name - the name.null.public static InteractionOperatorKind 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<InteractionOperatorKind>