Enum JobStatus

    • Enum Constant Detail

      • ACTIVE_IN_NJE

        public static final JobStatus ACTIVE_IN_NJE
        JES job status of "active in Network Job Entry (NJE)".
        Since:
        1.0.0
      • EXECUTING

        public static final JobStatus EXECUTING
        JES job status of "executing".
        Since:
        1.0.0
      • HAS_SECOND_LEVEL_MESSAGE

        public static final JobStatus HAS_SECOND_LEVEL_MESSAGE
        JES job status of "has second level message".
        Since:
        1.0.0
      • HELD

        public static final JobStatus HELD
        JES job status of "held".
        Since:
        1.0.0
      • ON_INPUT_QUEUE

        public static final JobStatus ON_INPUT_QUEUE
        JES job status of "on input queue".
        Since:
        1.0.0
      • ON_OUTPUT_QUEUE

        public static final JobStatus ON_OUTPUT_QUEUE
        JES job status of "on output queue".
        Since:
        1.0.0
    • Method Detail

      • values

        public static JobStatus[] 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 (JobStatus c : JobStatus.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static JobStatus 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