public static enum PriorityIncreaseData.Type extends java.lang.Enum<PriorityIncreaseData.Type>
| Enum Constant and Description |
|---|
IncreaseBy
Increase the priority by the given value.
|
IncreaseTo
Increase the priority to the given value (wont lower the priority).
|
| Modifier and Type | Method and Description |
|---|---|
static PriorityIncreaseData.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PriorityIncreaseData.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PriorityIncreaseData.Type IncreaseBy
public static final PriorityIncreaseData.Type IncreaseTo
public static PriorityIncreaseData.Type[] values()
for (PriorityIncreaseData.Type c : PriorityIncreaseData.Type.values()) System.out.println(c);
public static PriorityIncreaseData.Type 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 null