public enum PriorityClass extends Enum<PriorityClass> implements Enumerator
ConfigurationPackage.getPriorityClass()
Enum Constant and Description |
---|
AVERAGE
The 'AVERAGE' literal object.
|
DEFAULT
The 'DEFAULT' literal object.
|
HIGH
The 'HIGH' literal object.
|
HIGHEST
The 'HIGHEST' literal object.
|
LOW
The 'LOW' literal object.
|
LOWEST
The 'LOWEST' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
AVERAGE_VALUE
The 'AVERAGE' literal value.
|
static int |
DEFAULT_VALUE
The 'DEFAULT' literal value.
|
static int |
HIGH_VALUE
The 'HIGH' literal value.
|
static int |
HIGHEST_VALUE
The 'HIGHEST' literal value.
|
static int |
LOW_VALUE
The 'LOW' literal value.
|
static int |
LOWEST_VALUE
The 'LOWEST' literal value.
|
static List<PriorityClass> |
VALUES
A public read-only list of all the 'Priority Class' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static PriorityClass |
get(int value)
Returns the 'Priority Class' literal with the specified integer value.
|
static PriorityClass |
get(String literal)
Returns the 'Priority Class' literal with the specified literal value.
|
static PriorityClass |
getByName(String name)
Returns the 'Priority Class' 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 PriorityClass |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PriorityClass[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PriorityClass LOWEST
LOWEST_VALUE
public static final PriorityClass LOW
LOW_VALUE
public static final PriorityClass AVERAGE
AVERAGE_VALUE
public static final PriorityClass HIGH
HIGH_VALUE
public static final PriorityClass HIGHEST
HIGHEST_VALUE
public static final PriorityClass DEFAULT
DEFAULT_VALUE
public static final int LOWEST_VALUE
If the meaning of 'LOWEST' literal object isn't clear, there really should be more of a description here...
LOWEST
,
Constant Field Valuespublic static final int LOW_VALUE
If the meaning of 'LOW' literal object isn't clear, there really should be more of a description here...
LOW
,
Constant Field Valuespublic static final int AVERAGE_VALUE
If the meaning of 'AVERAGE' literal object isn't clear, there really should be more of a description here...
AVERAGE
,
Constant Field Valuespublic static final int HIGH_VALUE
If the meaning of 'HIGH' literal object isn't clear, there really should be more of a description here...
HIGH
,
Constant Field Valuespublic static final int HIGHEST_VALUE
If the meaning of 'HIGHEST' literal object isn't clear, there really should be more of a description here...
HIGHEST
,
Constant Field Valuespublic static final int DEFAULT_VALUE
If the meaning of 'DEFAULT' literal object isn't clear, there really should be more of a description here...
DEFAULT
,
Constant Field Valuespublic static final List<PriorityClass> VALUES
public static PriorityClass[] values()
for (PriorityClass c : PriorityClass.values()) System.out.println(c);
public static PriorityClass 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 PriorityClass get(String literal)
public static PriorityClass getByName(String name)
public static PriorityClass get(int value)
public int getValue()
getValue
in interface Enumerator
public String getName()
getName
in interface Enumerator
public String getLiteral()
getLiteral
in interface Enumerator
public String toString()
toString
in class Enum<PriorityClass>