Package com.sodius.mdw.metamodel.uml21
Class MessageKind
- java.lang.Object
-
- org.eclipse.emf.common.util.AbstractEnumerator
-
- com.sodius.mdw.metamodel.uml21.MessageKind
-
- All Implemented Interfaces:
Serializable
,org.eclipse.emf.common.util.Enumerator
public final class MessageKind extends org.eclipse.emf.common.util.AbstractEnumerator
A representation of the literals of the enumeration 'Message Kind', and utility methods for working with them. This is an enumerated type that identifies the type of message.- See Also:
UMLPackage.getMessageKind()
, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static int
COMPLETE
The 'Complete' literal value.static MessageKind
COMPLETE_LITERAL
The 'Complete' literal object.static int
FOUND
The 'Found' literal value.static MessageKind
FOUND_LITERAL
The 'Found' literal object.static int
LOST
The 'Lost' literal value.static MessageKind
LOST_LITERAL
The 'Lost' literal object.static int
UNKNOWN
The 'Unknown' literal value.static MessageKind
UNKNOWN_LITERAL
The 'Unknown' literal object.static List
VALUES
A public read-only list of all the 'Message Kind' enumerators.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MessageKind
get(int value)
Returns the 'Message Kind' literal with the specified integer value.static MessageKind
get(String literal)
Returns the 'Message Kind' literal with the specified literal value.static MessageKind
getByName(String name)
Returns the 'Message Kind' literal with the specified name.
-
-
-
Field Detail
-
COMPLETE
public static final int COMPLETE
The 'Complete' literal value. sendEvent and receiveEvent are present- See Also:
COMPLETE_LITERAL
, Constant Field Values
-
LOST
public static final int LOST
The 'Lost' literal value. sendEvent present and receiveEvent absent- See Also:
LOST_LITERAL
, Constant Field Values
-
FOUND
public static final int FOUND
The 'Found' literal value. sendEvent absent and receiveEvent present- See Also:
FOUND_LITERAL
, Constant Field Values
-
UNKNOWN
public static final int UNKNOWN
The 'Unknown' literal value. sendEvent and receiveEvent absent (should not appear)- See Also:
UNKNOWN_LITERAL
, Constant Field Values
-
COMPLETE_LITERAL
public static final MessageKind COMPLETE_LITERAL
The 'Complete' literal object.- See Also:
COMPLETE
-
LOST_LITERAL
public static final MessageKind LOST_LITERAL
The 'Lost' literal object.- See Also:
LOST
-
FOUND_LITERAL
public static final MessageKind FOUND_LITERAL
The 'Found' literal object.- See Also:
FOUND
-
UNKNOWN_LITERAL
public static final MessageKind UNKNOWN_LITERAL
The 'Unknown' literal object.- See Also:
UNKNOWN
-
VALUES
public static final List VALUES
A public read-only list of all the 'Message Kind' enumerators.
-
-
Method Detail
-
get
public static MessageKind get(String literal)
Returns the 'Message Kind' literal with the specified literal value.
-
getByName
public static MessageKind getByName(String name)
Returns the 'Message Kind' literal with the specified name.
-
get
public static MessageKind get(int value)
Returns the 'Message Kind' literal with the specified integer value.
-
-