public enum RunnablePriority extends Enum<RunnablePriority>
| Enum Constant and Description |
|---|
High
The High.
|
Highest
The Highest.
|
Low
The Low.
|
Lowest
The Lowest.
|
Normal
The Normal.
|
| 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 Highest
public static final RunnablePriority High
public static final RunnablePriority Normal
public static final RunnablePriority Low
public static final RunnablePriority Lowest
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–2014 JRebirth OSS. All rights reserved.