|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<PriorityDegradation>
scheduler.configuration.PriorityDegradation
public enum PriorityDegradation
A representation of the literals of the enumeration 'Priority Degradation', and utility methods for working with them.
ConfigurationPackage.getPriorityDegradation()
Enum Constant Summary | |
---|---|
RESET
The 'RESET' literal object. |
|
SLOW_DECAY
The 'SLOW DECAY' literal object. |
Field Summary | |
---|---|
static int |
RESET_VALUE
The 'RESET' literal value. |
static int |
SLOW_DECAY_VALUE
The 'SLOW DECAY' literal value. |
static List<PriorityDegradation> |
VALUES
A public read-only list of all the 'Priority Degradation' enumerators. |
Method Summary | |
---|---|
static PriorityDegradation |
get(int value)
Returns the 'Priority Degradation' literal with the specified integer value. |
static PriorityDegradation |
get(String literal)
Returns the 'Priority Degradation' literal with the specified literal value. |
static PriorityDegradation |
getByName(String name)
Returns the 'Priority Degradation' 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 PriorityDegradation |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static PriorityDegradation[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final PriorityDegradation RESET
RESET_VALUE
public static final PriorityDegradation SLOW_DECAY
SLOW_DECAY_VALUE
Field Detail |
---|
public static final int RESET_VALUE
If the meaning of 'RESET' literal object isn't clear, there really should be more of a description here...
RESET
,
Constant Field Valuespublic static final int SLOW_DECAY_VALUE
If the meaning of 'SLOW DECAY' literal object isn't clear, there really should be more of a description here...
SLOW_DECAY
,
Constant Field Valuespublic static final List<PriorityDegradation> VALUES
Method Detail |
---|
public static PriorityDegradation[] values()
for (PriorityDegradation c : PriorityDegradation.values()) System.out.println(c);
public static PriorityDegradation valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic static PriorityDegradation get(String literal)
public static PriorityDegradation getByName(String name)
public static PriorityDegradation get(int value)
public int getValue()
public String getName()
public String getLiteral()
public String toString()
toString
in class Enum<PriorityDegradation>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |