public static enum Job.Priority extends java.lang.Enum<Job.Priority>
| Enum Constant and Description |
|---|
ANALYSIS
Lowest priority: analysis.
|
INVISCHANGES
Next lower priority: invisible changes.
|
USER
The highest priority: from the user.
|
VISCHANGES
Next lower priority: visible changes.
|
| Modifier and Type | Method and Description |
|---|---|
static Job.Priority |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Job.Priority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Job.Priority USER
public static final Job.Priority VISCHANGES
public static final Job.Priority INVISCHANGES
public static final Job.Priority ANALYSIS
public static Job.Priority[] values()
for (Job.Priority c : Job.Priority.values()) System.out.println(c);
public static Job.Priority 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