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.AbstractEnumeratorA 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 intCOMPLETEThe 'Complete' literal value.static MessageKindCOMPLETE_LITERALThe 'Complete' literal object.static intFOUNDThe 'Found' literal value.static MessageKindFOUND_LITERALThe 'Found' literal object.static intLOSTThe 'Lost' literal value.static MessageKindLOST_LITERALThe 'Lost' literal object.static intUNKNOWNThe 'Unknown' literal value.static MessageKindUNKNOWN_LITERALThe 'Unknown' literal object.static ListVALUESA public read-only list of all the 'Message Kind' enumerators.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MessageKindget(int value)Returns the 'Message Kind' literal with the specified integer value.static MessageKindget(String literal)Returns the 'Message Kind' literal with the specified literal value.static MessageKindgetByName(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.
-
-