Enum Job.ExecutionTime

    • 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

      • value

        private final int value
      • displayValue

        private final String displayValue
      • defaultSlots

        private final int defaultSlots
      • defaultPriority

        private final int defaultPriority
    • Constructor Detail

      • ExecutionTime

        private ExecutionTime​(int value,
                              String displayValue,
                              int defaultSlots,
                              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
      • 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.