public enum RunnablePriority extends Enum<RunnablePriority>
| Enum Constant and Description |
|---|
High
The High.
|
Higher
The Higher.
|
Highest
The Highest.
|
Low
The Low.
|
Lower
The Lower.
|
Lowest
The Lowest.
|
None
The None.
|
Normal
The Normal.
|
Ultimate
The Ultimate.
|
| Modifier and Type | Field and Description |
|---|---|
private int |
level
The level.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getLevel()
Gets the level.
|
static RunnablePriority |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RunnablePriority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RunnablePriority Ultimate
public static final RunnablePriority Highest
public static final RunnablePriority Higher
public static final RunnablePriority High
public static final RunnablePriority Normal
public static final RunnablePriority Low
public static final RunnablePriority Lower
public static final RunnablePriority Lowest
public static final RunnablePriority None
public static RunnablePriority[] values()
for (RunnablePriority c : RunnablePriority.values()) System.out.println(c);
public static RunnablePriority 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 int getLevel()
Copyright © 2011–2015 JRebirth OSS. All rights reserved.