Class ScopeKind
- java.lang.Object
-
- org.eclipse.emf.common.util.AbstractEnumerator
-
- com.sodius.mdw.metamodel.rhapsody.ScopeKind
-
- All Implemented Interfaces:
java.io.Serializable,org.eclipse.emf.common.util.Enumerator
public final class ScopeKind extends org.eclipse.emf.common.util.AbstractEnumeratorA representation of the literals of the enumeration 'Scope Kind', and utility methods for working with them.- See Also:
RhapsodyPackage.getScopeKind(), Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static intDERIVEDThe 'Derived' literal value.static ScopeKindDERIVED_LITERALThe 'Derived' literal object.static intEXPLICITThe 'Explicit' literal value.static ScopeKindEXPLICIT_LITERALThe 'Explicit' literal object.static intUNKNOWNThe 'Unknown' literal value.static ScopeKindUNKNOWN_LITERALThe 'Unknown' literal object.static java.util.ListVALUESA public read-only list of all the 'Scope Kind' enumerators.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ScopeKindget(int value)Returns the 'Scope Kind' literal with the specified integer value.static ScopeKindget(java.lang.String literal)Returns the 'Scope Kind' literal with the specified literal value.static ScopeKindgetByName(java.lang.String name)Returns the 'Scope Kind' literal with the specified name.
-
-
-
Field Detail
-
EXPLICIT
public static final int EXPLICIT
The 'Explicit' literal value.- See Also:
EXPLICIT_LITERAL, Constant Field Values
-
DERIVED
public static final int DERIVED
The 'Derived' literal value.- See Also:
DERIVED_LITERAL, Constant Field Values
-
UNKNOWN
public static final int UNKNOWN
The 'Unknown' literal value.- See Also:
UNKNOWN_LITERAL, Constant Field Values
-
EXPLICIT_LITERAL
public static final ScopeKind EXPLICIT_LITERAL
The 'Explicit' literal object.- See Also:
EXPLICIT
-
DERIVED_LITERAL
public static final ScopeKind DERIVED_LITERAL
The 'Derived' literal object.- See Also:
DERIVED
-
UNKNOWN_LITERAL
public static final ScopeKind 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 'Scope Kind' enumerators.
-
-
Method Detail
-
get
public static ScopeKind get(java.lang.String literal)
Returns the 'Scope Kind' literal with the specified literal value.- Parameters:
literal- the literal.- Returns:
- the matching enumerator or
null.
-
getByName
public static ScopeKind getByName(java.lang.String name)
Returns the 'Scope Kind' literal with the specified name.- Parameters:
name- the name.- Returns:
- the matching enumerator or
null.
-
get
public static ScopeKind get(int value)
Returns the 'Scope Kind' literal with the specified integer value.- Parameters:
value- the integer value.- Returns:
- the matching enumerator or
null.
-
-