public enum MessageKind extends java.lang.Enum<MessageKind> implements org.eclipse.emf.common.util.Enumerator
InteractionPackage.getMessageKind()| Enum Constant and Description |
|---|
ASYNCHRONOUS_CALL
The 'ASYNCHRONOUS CALL' literal object.
|
CREATE
The 'CREATE' literal object.
|
DELETE
The 'DELETE' literal object.
|
REPLY
The 'REPLY' literal object.
|
SYNCHRONOUS_CALL
The 'SYNCHRONOUS CALL' literal object.
|
TIMER
The 'TIMER' literal object.
|
UNSET
The 'UNSET' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
ASYNCHRONOUS_CALL_VALUE
The 'ASYNCHRONOUS CALL' literal value.
|
static int |
CREATE_VALUE
The 'CREATE' literal value.
|
static int |
DELETE_VALUE
The 'DELETE' literal value.
|
static int |
REPLY_VALUE
The 'REPLY' literal value.
|
static int |
SYNCHRONOUS_CALL_VALUE
The 'SYNCHRONOUS CALL' literal value.
|
static int |
TIMER_VALUE
The 'TIMER' literal value.
|
static int |
UNSET_VALUE
The 'UNSET' literal value.
|
static java.util.List<MessageKind> |
VALUES
A public read-only list of all the 'Message Kind' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static MessageKind |
get(int value)
Returns the 'Message Kind' literal with the specified integer value.
|
static MessageKind |
get(java.lang.String literal)
Returns the 'Message Kind' literal with the specified literal value.
|
static MessageKind |
getByName(java.lang.String name)
Returns the 'Message 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 MessageKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MessageKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageKind UNSET
UNSET_VALUEpublic static final MessageKind ASYNCHRONOUS_CALL
ASYNCHRONOUS_CALL_VALUEpublic static final MessageKind SYNCHRONOUS_CALL
SYNCHRONOUS_CALL_VALUEpublic static final MessageKind REPLY
REPLY_VALUEpublic static final MessageKind DELETE
DELETE_VALUEpublic static final MessageKind CREATE
CREATE_VALUEpublic static final MessageKind TIMER
TIMER_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 ASYNCHRONOUS_CALL_VALUE
If the meaning of 'ASYNCHRONOUS CALL' literal object isn't clear, there really should be more of a description here...
ASYNCHRONOUS_CALL,
Constant Field Valuespublic static final int SYNCHRONOUS_CALL_VALUE
If the meaning of 'SYNCHRONOUS CALL' literal object isn't clear, there really should be more of a description here...
SYNCHRONOUS_CALL,
Constant Field Valuespublic static final int REPLY_VALUE
If the meaning of 'REPLY' literal object isn't clear, there really should be more of a description here...
REPLY,
Constant Field Valuespublic static final int DELETE_VALUE
If the meaning of 'DELETE' literal object isn't clear, there really should be more of a description here...
DELETE,
Constant Field Valuespublic static final int CREATE_VALUE
If the meaning of 'CREATE' literal object isn't clear, there really should be more of a description here...
CREATE,
Constant Field Valuespublic static final int TIMER_VALUE
If the meaning of 'TIMER' literal object isn't clear, there really should be more of a description here...
TIMER,
Constant Field Valuespublic static final java.util.List<MessageKind> VALUES
public static MessageKind[] values()
for (MessageKind c : MessageKind.values()) System.out.println(c);
public static MessageKind 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 MessageKind get(java.lang.String literal)
literal - the literal.null.public static MessageKind getByName(java.lang.String name)
name - the name.null.public static MessageKind 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<MessageKind>