Enum Job.Status

    • Enum Constant Detail

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

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

      • Status

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

      • values

        public static Job.Status[] 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.Status c : Job.Status.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.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
      • 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