Enum Class JobResult

Object
Enum<JobResult>
JobResult
All Implemented Interfaces:
Serializable, Comparable<JobResult>, Constable

public enum JobResult extends Enum<JobResult>
  • Enum Constant Details

    • NOT_SET

      public static final JobResult NOT_SET
    • SUCCESS

      public static final JobResult SUCCESS
    • COMPLETED_WITH_ERROR

      public static final JobResult COMPLETED_WITH_ERROR
    • FAILURE

      public static final JobResult FAILURE
    • ABORTED

      public static final JobResult ABORTED
  • Method Details

    • values

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

      public static JobResult valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null