Enum Class ComputeJob.Status

java.lang.Object
java.lang.Enum<ComputeJob.Status>
com.linkedin.venice.jobs.ComputeJob.Status
All Implemented Interfaces:
Serializable, Comparable<ComputeJob.Status>, Constable
Enclosing interface:
ComputeJob

public static enum ComputeJob.Status extends Enum<ComputeJob.Status>
  • Enum Constant Details

    • NOT_STARTED

      public static final ComputeJob.Status NOT_STARTED
      A job that has not started execution yet
    • RUNNING

      public static final ComputeJob.Status RUNNING
      A job that is currently executing
    • SUCCEEDED

      public static final ComputeJob.Status SUCCEEDED
      A job that has completed execution successfully
    • FAILED

      public static final ComputeJob.Status FAILED
      A job that failed during it's execution
    • FAILED_VERIFICATION

      public static final ComputeJob.Status FAILED_VERIFICATION
      A job that has completed execution but failed verification
    • KILLED

      public static final ComputeJob.Status KILLED
      A job that was killed
  • Method Details

    • values

      public static ComputeJob.Status[] 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 ComputeJob.Status 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
    • isTerminal

      public boolean isTerminal()