net.aavalla.utils.jobpool
Enum JobPriority

java.lang.Object
  extended by java.lang.Enum<JobPriority>
      extended by 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

Enum Constant Summary
HIGH
           
HIGHER
           
HIGHEST
           
IMMEDIATE
           
LOW
           
LOWER
           
LOWEST
           
NORMAL
           
 
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
 

Enum Constant Detail

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
Method Detail

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