public enum JobPriority extends Enum<JobPriority>
| Modifier and Type | Method and Description |
|---|---|
static JobPriority |
fromInteger(int x) |
int |
getIndex() |
static JobPriority |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobPriority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobPriority HIGH
public static final JobPriority NORMAL
public static final JobPriority LOW
public static JobPriority[] values()
for (JobPriority c : JobPriority.values()) System.out.println(c);
public static JobPriority 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 getIndex()
public static JobPriority fromInteger(int x)
Copyright © 2013. All Rights Reserved.