Class BuildSetKind
- java.lang.Object
-
- org.eclipse.emf.common.util.AbstractEnumerator
-
- com.sodius.mdw.metamodel.rhapsody.BuildSetKind
-
- All Implemented Interfaces:
java.io.Serializable
,org.eclipse.emf.common.util.Enumerator
public final class BuildSetKind extends org.eclipse.emf.common.util.AbstractEnumerator
A representation of the literals of the enumeration 'Build Set Kind', and utility methods for working with them.- See Also:
RhapsodyPackage.getBuildSetKind()
, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static int
DEBUG
The 'Debug' literal value.static BuildSetKind
DEBUG_LITERAL
The 'Debug' literal object.static int
RELEASE
The 'Release' literal value.static BuildSetKind
RELEASE_LITERAL
The 'Release' literal object.static int
UNKNOWN
The 'Unknown' literal value.static BuildSetKind
UNKNOWN_LITERAL
The 'Unknown' literal object.static java.util.List
VALUES
A public read-only list of all the 'Build Set Kind' enumerators.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BuildSetKind
get(int value)
Returns the 'Build Set Kind' literal with the specified integer value.static BuildSetKind
get(java.lang.String literal)
Returns the 'Build Set Kind' literal with the specified literal value.static BuildSetKind
getByName(java.lang.String name)
Returns the 'Build Set Kind' literal with the specified name.
-
-
-
Field Detail
-
DEBUG
public static final int DEBUG
The 'Debug' literal value.- See Also:
DEBUG_LITERAL
, Constant Field Values
-
RELEASE
public static final int RELEASE
The 'Release' literal value.- See Also:
RELEASE_LITERAL
, Constant Field Values
-
UNKNOWN
public static final int UNKNOWN
The 'Unknown' literal value.- See Also:
UNKNOWN_LITERAL
, Constant Field Values
-
DEBUG_LITERAL
public static final BuildSetKind DEBUG_LITERAL
The 'Debug' literal object.- See Also:
DEBUG
-
RELEASE_LITERAL
public static final BuildSetKind RELEASE_LITERAL
The 'Release' literal object.- See Also:
RELEASE
-
UNKNOWN_LITERAL
public static final BuildSetKind 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 'Build Set Kind' enumerators.
-
-
Method Detail
-
get
public static BuildSetKind get(java.lang.String literal)
Returns the 'Build Set Kind' literal with the specified literal value.- Parameters:
literal
- the literal.- Returns:
- the matching enumerator or
null
.
-
getByName
public static BuildSetKind getByName(java.lang.String name)
Returns the 'Build Set Kind' literal with the specified name.- Parameters:
name
- the name.- Returns:
- the matching enumerator or
null
.
-
get
public static BuildSetKind get(int value)
Returns the 'Build Set Kind' literal with the specified integer value.- Parameters:
value
- the integer value.- Returns:
- the matching enumerator or
null
.
-
-