Class CollaborationMode
- java.lang.Object
-
- org.eclipse.emf.common.util.AbstractEnumerator
-
- com.sodius.mdw.metamodel.rhapsody.CollaborationMode
-
- All Implemented Interfaces:
java.io.Serializable
,org.eclipse.emf.common.util.Enumerator
public final class CollaborationMode extends org.eclipse.emf.common.util.AbstractEnumerator
A representation of the literals of the enumeration 'Collaboration Mode', and utility methods for working with them.
-
-
Field Summary
Fields Modifier and Type Field Description static int
COLLABORATION_MODE_UNSPECIFIED
The 'Collaboration mode unspecified' literal value.static CollaborationMode
COLLABORATION_MODE_UNSPECIFIED_LITERAL
The 'Collaboration mode unspecified' literal object.static int
EXISTENTIAL
The 'Existential' literal value.static CollaborationMode
EXISTENTIAL_LITERAL
The 'Existential' literal object.static int
UNIVERSAL
The 'Universal' literal value.static CollaborationMode
UNIVERSAL_LITERAL
The 'Universal' literal object.static int
UNKNOWN
The 'Unknown' literal value.static CollaborationMode
UNKNOWN_LITERAL
The 'Unknown' literal object.static java.util.List
VALUES
A public read-only list of all the 'Collaboration Mode' enumerators.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CollaborationMode
get(int value)
Returns the 'Collaboration Mode' literal with the specified integer value.static CollaborationMode
get(java.lang.String literal)
Returns the 'Collaboration Mode' literal with the specified literal value.static CollaborationMode
getByName(java.lang.String name)
Returns the 'Collaboration Mode' literal with the specified name.
-
-
-
Field Detail
-
EXISTENTIAL
public static final int EXISTENTIAL
The 'Existential' literal value.- See Also:
EXISTENTIAL_LITERAL
, Constant Field Values
-
UNIVERSAL
public static final int UNIVERSAL
The 'Universal' literal value.- See Also:
UNIVERSAL_LITERAL
, Constant Field Values
-
COLLABORATION_MODE_UNSPECIFIED
public static final int COLLABORATION_MODE_UNSPECIFIED
The 'Collaboration mode unspecified' literal value.
-
UNKNOWN
public static final int UNKNOWN
The 'Unknown' literal value.- See Also:
UNKNOWN_LITERAL
, Constant Field Values
-
EXISTENTIAL_LITERAL
public static final CollaborationMode EXISTENTIAL_LITERAL
The 'Existential' literal object.- See Also:
EXISTENTIAL
-
UNIVERSAL_LITERAL
public static final CollaborationMode UNIVERSAL_LITERAL
The 'Universal' literal object.- See Also:
UNIVERSAL
-
COLLABORATION_MODE_UNSPECIFIED_LITERAL
public static final CollaborationMode COLLABORATION_MODE_UNSPECIFIED_LITERAL
The 'Collaboration mode unspecified' literal object.- See Also:
COLLABORATION_MODE_UNSPECIFIED
-
UNKNOWN_LITERAL
public static final CollaborationMode 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 'Collaboration Mode' enumerators.
-
-
Method Detail
-
get
public static CollaborationMode get(java.lang.String literal)
Returns the 'Collaboration Mode' literal with the specified literal value.- Parameters:
literal
- the literal.- Returns:
- the matching enumerator or
null
.
-
getByName
public static CollaborationMode getByName(java.lang.String name)
Returns the 'Collaboration Mode' literal with the specified name.- Parameters:
name
- the name.- Returns:
- the matching enumerator or
null
.
-
get
public static CollaborationMode get(int value)
Returns the 'Collaboration Mode' literal with the specified integer value.- Parameters:
value
- the integer value.- Returns:
- the matching enumerator or
null
.
-
-