net.aavalla.utils.jobpool
Enum JobPriority
java.lang.Object
java.lang.Enum<JobPriority>
net.aavalla.utils.jobpool.JobPriority
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<JobPriority>
public enum JobPriority
- extends java.lang.Enum<JobPriority>
Represents a job's priority class. Highest priority jobs are always
started by JobPool before jobs with a lower priority. JobPool can be
set to force already running jobs with higher priority to end before
starting any lower priority jobs by calling method
JobPool.setBetterPriorityJobsMustEndFirst()
- Author:
- Lari Natri
Method Summary |
static JobPriority |
valueOf(java.lang.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. |
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 |
IMMEDIATE
public static final JobPriority IMMEDIATE
HIGHEST
public static final JobPriority HIGHEST
HIGHER
public static final JobPriority HIGHER
HIGH
public static final JobPriority HIGH
NORMAL
public static final JobPriority NORMAL
LOW
public static final JobPriority LOW
LOWER
public static final JobPriority LOWER
LOWEST
public static final JobPriority LOWEST
values
public static JobPriority[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (JobPriority c : JobPriority.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static JobPriority valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null