|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Job.Priority>
com.sun.electric.tool.Job.Priority
public static enum Job.Priority
Priority is a typesafe enum class that describes the priority of a job.
Enum Constant Summary | |
---|---|
ANALYSIS
Lowest priority: analysis. |
|
INVISCHANGES
Next lower priority: invisible changes. |
|
USER
The highest priority: from the user. |
|
VISCHANGES
Next lower priority: visible changes. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Job.Priority USER
public static final Job.Priority VISCHANGES
public static final Job.Priority INVISCHANGES
public static final Job.Priority ANALYSIS
Method Detail |
---|
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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |