Enum ExecStatus

    • Enum Constant Detail

      • READY

        public static final ExecStatus READY
        The job is ready, it can be running or terminated.
      • RUNNING

        public static final ExecStatus RUNNING
        The job is running, it can be stopped or terminated.
      • STOPPED

        public static final ExecStatus STOPPED
        The job is stopped, it can be running or terminated.
      • TERMINATED

        public static final ExecStatus TERMINATED
        The job is terminated.
    • Method Detail

      • values

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

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