Class MessagePointKind
- java.lang.Object
-
- org.eclipse.emf.common.util.AbstractEnumerator
-
- com.sodius.mdw.metamodel.rhapsody.MessagePointKind
-
- All Implemented Interfaces:
java.io.Serializable
,org.eclipse.emf.common.util.Enumerator
public final class MessagePointKind extends org.eclipse.emf.common.util.AbstractEnumerator
A representation of the literals of the enumeration 'Message Point Kind', and utility methods for working with them.
-
-
Field Summary
Fields Modifier and Type Field Description static int
ARRIVED
The 'Arrived' literal value.static MessagePointKind
ARRIVED_LITERAL
The 'Arrived' literal object.static int
SENT
The 'Sent' literal value.static MessagePointKind
SENT_LITERAL
The 'Sent' literal object.static int
UNKNOWN
The 'Unknown' literal value.static MessagePointKind
UNKNOWN_LITERAL
The 'Unknown' literal object.static java.util.List
VALUES
A public read-only list of all the 'Message Point Kind' enumerators.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MessagePointKind
get(int value)
Returns the 'Message Point Kind' literal with the specified integer value.static MessagePointKind
get(java.lang.String literal)
Returns the 'Message Point Kind' literal with the specified literal value.static MessagePointKind
getByName(java.lang.String name)
Returns the 'Message Point Kind' literal with the specified name.
-
-
-
Field Detail
-
SENT
public static final int SENT
The 'Sent' literal value.- See Also:
SENT_LITERAL
, Constant Field Values
-
ARRIVED
public static final int ARRIVED
The 'Arrived' literal value.- See Also:
ARRIVED_LITERAL
, Constant Field Values
-
UNKNOWN
public static final int UNKNOWN
The 'Unknown' literal value.- See Also:
UNKNOWN_LITERAL
, Constant Field Values
-
SENT_LITERAL
public static final MessagePointKind SENT_LITERAL
The 'Sent' literal object.- See Also:
SENT
-
ARRIVED_LITERAL
public static final MessagePointKind ARRIVED_LITERAL
The 'Arrived' literal object.- See Also:
ARRIVED
-
UNKNOWN_LITERAL
public static final MessagePointKind UNKNOWN_LITERAL
The 'Unknown' literal object.- See Also:
UNKNOWN
-
VALUES
public static final java.util.List VALUES
A public read-only list of all the 'Message Point Kind' enumerators.
-
-
Method Detail
-
get
public static MessagePointKind get(java.lang.String literal)
Returns the 'Message Point Kind' literal with the specified literal value.- Parameters:
literal
- the literal.- Returns:
- the matching enumerator or
null
.
-
getByName
public static MessagePointKind getByName(java.lang.String name)
Returns the 'Message Point Kind' literal with the specified name.- Parameters:
name
- the name.- Returns:
- the matching enumerator or
null
.
-
get
public static MessagePointKind get(int value)
Returns the 'Message Point Kind' literal with the specified integer value.- Parameters:
value
- the integer value.- Returns:
- the matching enumerator or
null
.
-
-