Enum Class JobData.Result

java.lang.Object
java.lang.Enum<JobData.Result>
com.denodo.scheduler.client.job.JobData.Result
All Implemented Interfaces:
Serializable, Comparable<JobData.Result>, Constable
Enclosing class:
JobData

public static enum JobData.Result extends Enum<JobData.Result>
Represents the result of the last execution of the job.
  • Enum Constant Details

    • COMPLETE

      public static final JobData.Result COMPLETE
      Job result for indicating that the job completed successfully.
    • WARNING

      public static final JobData.Result WARNING
      Job result for indicating that the job completed with warnings.
    • ERROR

      public static final JobData.Result ERROR
      Job result for indicating that the job had stopped because of an error.
    • STOPPED

      public static final JobData.Result STOPPED
      Job result for indicating that the job had stopped because of an user request.
    • MISFIRED

      public static final JobData.Result MISFIRED
      Job result for indicating that the job is misfired.
    • NEVER_EXECUTED

      public static final JobData.Result NEVER_EXECUTED
      Job result for indicating that the job has never been executed previously (or because it is a draft job).
  • Method Details

    • values

      public static JobData.Result[] 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 JobData.Result 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