Enum Job.Status

java.lang.Object
java.lang.Enum<Job.Status>
net.sf.basedb.core.Job.Status
All Implemented Interfaces:
Serializable, Comparable<Job.Status>, java.lang.constant.Constable
Enclosing class:
Job

public static enum Job.Status
extends Enum<Job.Status>
The status of a job.
  • Enum Constant Details

    • UNCONFIGURED

      public static final Job.Status UNCONFIGURED
      The job hasn't been configured yet.
    • WAITING

      public static final Job.Status WAITING
      The job is waiting to be started.
    • PREPARED

      public static final Job.Status PREPARED
      The job is beeing prepared for execution.
    • EXECUTING

      public static final Job.Status EXECUTING
      The job is executing.
    • ABORTING

      public static final Job.Status ABORTING
      The Signal.ABORT signal has been sent to the job, but it has not yet responded.
    • PAUSED

      public static final Job.Status PAUSED
      The job has been paused.
      Since:
      3.11
    • DONE

      public static final Job.Status DONE
      The job has finished successfully.
    • ERROR

      public static final Job.Status ERROR
      The job has finished with an error.
  • Field Details

    • valueMapping

      private static final Map<Integer,​Job.Status> valueMapping
      Maps the integer that is stored in the database.
    • value

      private final int value
    • displayValue

      private final String displayValue
    • executable

      private final boolean executable
  • Constructor Details

    • Status

      private Status​(int value, String displayValue, boolean executable)
  • Method Details

    • values

      public static Job.Status[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static Job.Status 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.Status 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.Status>
    • getValue

      public int getValue()
      Get the integer value that is used when storing a Job.Status to the database.
      Returns:
      The intger value of this type
    • isExecutable

      public boolean isExecutable()
      If the Job.execute(ProgressReporter, String) method can be called when the job is in this status or not.