2.17.2: 2011-06-17

net.sf.basedb.core
Enum Job.ExecutionTime

java.lang.Object
  extended by java.lang.Enum<Job.ExecutionTime>
      extended by net.sf.basedb.core.Job.ExecutionTime
All Implemented Interfaces:
Serializable, Comparable<Job.ExecutionTime>
Enclosing class:
Job

public static enum Job.ExecutionTime
extends Enum<Job.ExecutionTime>

A rough estimate of the execution time of a job.


Enum Constant Summary
LONG
          The job takes more than 1 hour to execute.
MEDIUM
          The job shouldn't take less than 1 hour to execute.
SHORT
          The job shouldn't take more than 10 minutes to execute.
SHORTEST
          The job is fast and should not take more than a minute to execute.
 
Field Summary
private  int defaultPriority
           
private  int defaultSlots
           
private  String displayValue
           
private  int value
           
private static Map<Integer,Job.ExecutionTime> valueMapping
          Maps the integer that is stored in the database.
 
Method Summary
static Job.ExecutionTime fromValue(int value)
          Get the Job.Status object when you know the integer code.
 int getDefaultPriority()
          The default thread priority to use when executing jobs in with this execution time.
 int getDefaultSlots()
          The default number of execution slots available for jobs with this execution time in the internal job queue.
 int getValue()
          Get the integer value that is used when storing a Job.ExecutionTime in the database.
 String toString()
           
static Job.ExecutionTime valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Job.ExecutionTime[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SHORTEST

public static final Job.ExecutionTime SHORTEST
The job is fast and should not take more than a minute to execute.


SHORT

public static final Job.ExecutionTime SHORT
The job shouldn't take more than 10 minutes to execute.


MEDIUM

public static final Job.ExecutionTime MEDIUM
The job shouldn't take less than 1 hour to execute.


LONG

public static final Job.ExecutionTime LONG
The job takes more than 1 hour to execute.

Field Detail

valueMapping

private static final Map<Integer,Job.ExecutionTime> valueMapping
Maps the integer that is stored in the database.


value

private final int value

displayValue

private final String displayValue

defaultSlots

private final int defaultSlots

defaultPriority

private final int defaultPriority
Method Detail

values

public static Job.ExecutionTime[] 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 (Job.ExecutionTime c : Job.ExecutionTime.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Job.ExecutionTime valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

fromValue

public static Job.ExecutionTime fromValue(int value)
Get the Job.Status object when you know the integer code.

Parameters:
value - The integer value.
Returns:
The type object or null if the value is unknown

toString

public String toString()
Overrides:
toString in class Enum<Job.ExecutionTime>

getValue

public int getValue()
Get the integer value that is used when storing a Job.ExecutionTime in the database.

Returns:
The integer value of this type

getDefaultSlots

public int getDefaultSlots()
The default number of execution slots available for jobs with this execution time in the internal job queue.


getDefaultPriority

public int getDefaultPriority()
The default thread priority to use when executing jobs in with this execution time.


2.17.2: 2011-06-17