Package com.sodius.mdw.metamodel.uml21
Class MessageSort
- java.lang.Object
-
- org.eclipse.emf.common.util.AbstractEnumerator
-
- com.sodius.mdw.metamodel.uml21.MessageSort
-
- All Implemented Interfaces:
Serializable,org.eclipse.emf.common.util.Enumerator
public final class MessageSort extends org.eclipse.emf.common.util.AbstractEnumeratorA representation of the literals of the enumeration 'Message Sort', and utility methods for working with them. This is an enumerated type that identifies the type of communication action that was used to generate the message.- See Also:
UMLPackage.getMessageSort(), Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static intASYNCH_CALLThe 'Asynch Call' literal value.static MessageSortASYNCH_CALL_LITERALThe 'Asynch Call' literal object.static intASYNCH_SIGNALThe 'Asynch Signal' literal value.static MessageSortASYNCH_SIGNAL_LITERALThe 'Asynch Signal' literal object.static intCREATE_MESSAGEThe 'Create Message' literal value.static MessageSortCREATE_MESSAGE_LITERALThe 'Create Message' literal object.static intDELETE_MESSAGEThe 'Delete Message' literal value.static MessageSortDELETE_MESSAGE_LITERALThe 'Delete Message' literal object.static intREPLYThe 'Reply' literal value.static MessageSortREPLY_LITERALThe 'Reply' literal object.static intSYNCH_CALLThe 'Synch Call' literal value.static MessageSortSYNCH_CALL_LITERALThe 'Synch Call' literal object.static ListVALUESA public read-only list of all the 'Message Sort' enumerators.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MessageSortget(int value)Returns the 'Message Sort' literal with the specified integer value.static MessageSortget(String literal)Returns the 'Message Sort' literal with the specified literal value.static MessageSortgetByName(String name)Returns the 'Message Sort' literal with the specified name.
-
-
-
Field Detail
-
SYNCH_CALL
public static final int SYNCH_CALL
The 'Synch Call' literal value. The message was generated by a synchronous call to an operation.- See Also:
SYNCH_CALL_LITERAL, Constant Field Values
-
ASYNCH_CALL
public static final int ASYNCH_CALL
The 'Asynch Call' literal value. The message was generated by an asynchronous call to an operation; i.e., a CallAction with isSynchronous = false.- See Also:
ASYNCH_CALL_LITERAL, Constant Field Values
-
ASYNCH_SIGNAL
public static final int ASYNCH_SIGNAL
The 'Asynch Signal' literal value. The message was generated by an asynchronous send action.- See Also:
ASYNCH_SIGNAL_LITERAL, Constant Field Values
-
CREATE_MESSAGE
public static final int CREATE_MESSAGE
The 'Create Message' literal value. The message designating the creation of another lifeline object.- See Also:
CREATE_MESSAGE_LITERAL, Constant Field Values
-
DELETE_MESSAGE
public static final int DELETE_MESSAGE
The 'Delete Message' literal value. The message designating the termination of another lifeline.- See Also:
DELETE_MESSAGE_LITERAL, Constant Field Values
-
REPLY
public static final int REPLY
The 'Reply' literal value. The message is a reply message to an operation call.- See Also:
REPLY_LITERAL, Constant Field Values
-
SYNCH_CALL_LITERAL
public static final MessageSort SYNCH_CALL_LITERAL
The 'Synch Call' literal object.- See Also:
SYNCH_CALL
-
ASYNCH_CALL_LITERAL
public static final MessageSort ASYNCH_CALL_LITERAL
The 'Asynch Call' literal object.- See Also:
ASYNCH_CALL
-
ASYNCH_SIGNAL_LITERAL
public static final MessageSort ASYNCH_SIGNAL_LITERAL
The 'Asynch Signal' literal object.- See Also:
ASYNCH_SIGNAL
-
CREATE_MESSAGE_LITERAL
public static final MessageSort CREATE_MESSAGE_LITERAL
The 'Create Message' literal object.- See Also:
CREATE_MESSAGE
-
DELETE_MESSAGE_LITERAL
public static final MessageSort DELETE_MESSAGE_LITERAL
The 'Delete Message' literal object.- See Also:
DELETE_MESSAGE
-
REPLY_LITERAL
public static final MessageSort REPLY_LITERAL
The 'Reply' literal object.- See Also:
REPLY
-
VALUES
public static final List VALUES
A public read-only list of all the 'Message Sort' enumerators.
-
-
Method Detail
-
get
public static MessageSort get(String literal)
Returns the 'Message Sort' literal with the specified literal value.
-
getByName
public static MessageSort getByName(String name)
Returns the 'Message Sort' literal with the specified name.
-
get
public static MessageSort get(int value)
Returns the 'Message Sort' literal with the specified integer value.
-
-