public enum RunQueueType extends Enum<RunQueueType> implements Enumerator
ConfigurationPackage.getRunQueueType()
Enum Constant and Description |
---|
ACTIVE_AND_EXPIRED
The 'ACTIVE AND EXPIRED' literal object.
|
SINGLE
The 'SINGLE' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
ACTIVE_AND_EXPIRED_VALUE
The 'ACTIVE AND EXPIRED' literal value.
|
static int |
SINGLE_VALUE
The 'SINGLE' literal value.
|
static List<RunQueueType> |
VALUES
A public read-only list of all the 'Run Queue Type' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static RunQueueType |
get(int value)
Returns the 'Run Queue Type' literal with the specified integer value.
|
static RunQueueType |
get(String literal)
Returns the 'Run Queue Type' literal with the specified literal value.
|
static RunQueueType |
getByName(String name)
Returns the 'Run Queue Type' 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 RunQueueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RunQueueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RunQueueType ACTIVE_AND_EXPIRED
ACTIVE_AND_EXPIRED_VALUE
public static final RunQueueType SINGLE
SINGLE_VALUE
public static final int ACTIVE_AND_EXPIRED_VALUE
If the meaning of 'ACTIVE AND EXPIRED' literal object isn't clear, there really should be more of a description here...
ACTIVE_AND_EXPIRED
,
Constant Field Valuespublic static final int SINGLE_VALUE
If the meaning of 'SINGLE' literal object isn't clear, there really should be more of a description here...
SINGLE
,
Constant Field Valuespublic static final List<RunQueueType> VALUES
public static RunQueueType[] values()
for (RunQueueType c : RunQueueType.values()) System.out.println(c);
public static RunQueueType 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 RunQueueType get(String literal)
public static RunQueueType getByName(String name)
public static RunQueueType 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<RunQueueType>