public enum DecisionStatusEnum extends Enum<DecisionStatusEnum> implements Enumerator
options.OptionsPackage#getDecisionStatusEnum()| Enum Constant and Description |
|---|
IN_CONFLICT
The 'In Conflict' literal object.
|
OBSOLETE
The 'Obsolete' literal object.
|
OPEN
The 'Open' literal object.
|
REPLACED
The 'Replaced' literal object.
|
REVIEWED
The 'Reviewed' literal object.
|
TAKEN
The 'Taken' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
IN_CONFLICT_VALUE
The 'In Conflict' literal value.
|
static int |
OBSOLETE_VALUE
The 'Obsolete' literal value.
|
static int |
OPEN_VALUE
The 'Open' literal value.
|
static int |
REPLACED_VALUE
The 'Replaced' literal value.
|
static int |
REVIEWED_VALUE
The 'Reviewed' literal value.
|
static int |
TAKEN_VALUE
The 'Taken' literal value.
|
static List<DecisionStatusEnum> |
VALUES
A public read-only list of all the 'Decision Status Enum' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static DecisionStatusEnum |
get(int value)
Returns the 'Decision Status Enum' literal with the specified integer value.
|
static DecisionStatusEnum |
get(String literal)
Returns the 'Decision Status Enum' literal with the specified literal value.
|
static DecisionStatusEnum |
getByName(String name)
Returns the 'Decision Status Enum' literal with the specified name.
|
String |
getLiteral() |
String |
getName() |
int |
getValue() |
String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static DecisionStatusEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DecisionStatusEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DecisionStatusEnum OPEN
OPEN_VALUEpublic static final DecisionStatusEnum TAKEN
TAKEN_VALUEpublic static final DecisionStatusEnum REVIEWED
REVIEWED_VALUEpublic static final DecisionStatusEnum OBSOLETE
OBSOLETE_VALUEpublic static final DecisionStatusEnum REPLACED
REPLACED_VALUEpublic static final DecisionStatusEnum IN_CONFLICT
IN_CONFLICT_VALUEpublic static final int OPEN_VALUE
If the meaning of 'Open' literal object isn't clear, there really should be more of a description here...
OPEN,
Constant Field Valuespublic static final int TAKEN_VALUE
If the meaning of 'Taken' literal object isn't clear, there really should be more of a description here...
TAKEN,
Constant Field Valuespublic static final int REVIEWED_VALUE
If the meaning of 'Reviewed' literal object isn't clear, there really should be more of a description here...
REVIEWED,
Constant Field Valuespublic static final int OBSOLETE_VALUE
If the meaning of 'Obsolete' literal object isn't clear, there really should be more of a description here...
OBSOLETE,
Constant Field Valuespublic static final int REPLACED_VALUE
If the meaning of 'Replaced' literal object isn't clear, there really should be more of a description here...
REPLACED,
Constant Field Valuespublic static final int IN_CONFLICT_VALUE
If the meaning of 'In Conflict' literal object isn't clear, there really should be more of a description here...
IN_CONFLICT,
Constant Field Valuespublic static final List<DecisionStatusEnum> VALUES
public static DecisionStatusEnum[] values()
for (DecisionStatusEnum c : DecisionStatusEnum.values()) System.out.println(c);
public static DecisionStatusEnum valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static DecisionStatusEnum get(String literal)
literal - the literal.null.public static DecisionStatusEnum getByName(String name)
name - the name.null.public static DecisionStatusEnum get(int value)
value - the integer value.null.public int getValue()
getValue in interface Enumeratorpublic String getName()
getName in interface Enumeratorpublic String getLiteral()
getLiteral in interface Enumeratorpublic String toString()
toString in class Enum<DecisionStatusEnum>