public enum PhaseCode extends java.lang.Enum<PhaseCode> implements org.eclipse.emf.common.util.Enumerator
AcscPackage.getPhaseCode()
Enum Constant and Description |
---|
A
The 'A' literal object.
|
AB
The 'AB' literal object.
|
ABC
The 'ABC' literal object.
|
AC
The 'AC' literal object.
|
B
The 'B' literal object.
|
BC
The 'BC' literal object.
|
C
The 'C' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
A_VALUE
The 'A' literal value.
|
static int |
AB_VALUE
The 'AB' literal value.
|
static int |
ABC_VALUE
The 'ABC' literal value.
|
static int |
AC_VALUE
The 'AC' literal value.
|
static int |
B_VALUE
The 'B' literal value.
|
static int |
BC_VALUE
The 'BC' literal value.
|
static int |
C_VALUE
The 'C' literal value.
|
static java.util.List<PhaseCode> |
VALUES
A public read-only list of all the 'Phase Code' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static PhaseCode |
get(int value)
Returns the 'Phase Code' literal with the specified integer value.
|
static PhaseCode |
get(java.lang.String literal)
Returns the 'Phase Code' literal with the specified literal value.
|
static PhaseCode |
getByName(java.lang.String name)
Returns the 'Phase Code' literal with the specified name.
|
java.lang.String |
getLiteral() |
java.lang.String |
getName() |
int |
getValue() |
java.lang.String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static PhaseCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PhaseCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final int A_VALUE
If the meaning of 'A' literal object isn't clear, there really should be more of a description here...
A
,
Constant Field Valuespublic static final int B_VALUE
If the meaning of 'B' literal object isn't clear, there really should be more of a description here...
B
,
Constant Field Valuespublic static final int C_VALUE
If the meaning of 'C' literal object isn't clear, there really should be more of a description here...
C
,
Constant Field Valuespublic static final int AB_VALUE
AB
,
Constant Field Valuespublic static final int BC_VALUE
BC
,
Constant Field Valuespublic static final int AC_VALUE
AC
,
Constant Field Valuespublic static final int ABC_VALUE
ABC
,
Constant Field Valuespublic static final java.util.List<PhaseCode> VALUES
public static PhaseCode[] values()
for (PhaseCode c : PhaseCode.values()) System.out.println(c);
public static PhaseCode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static PhaseCode get(java.lang.String literal)
literal
- the literal.null
.public static PhaseCode getByName(java.lang.String name)
name
- the name.null
.public static PhaseCode get(int value)
value
- the integer value.null
.public int getValue()
getValue
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String getName()
getName
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String getLiteral()
getLiteral
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String toString()
toString
in class java.lang.Enum<PhaseCode>