Enum Class RunStatus

java.lang.Object
java.lang.Enum<RunStatus>
com.algolia.model.ingestion.RunStatus
All Implemented Interfaces:
Serializable, Comparable<RunStatus>, Constable

public enum RunStatus extends Enum<RunStatus>
Gets or Sets RunStatus
  • Enum Constant Details

    • CREATED

      public static final RunStatus CREATED
    • STARTED

      public static final RunStatus STARTED
    • IDLED

      public static final RunStatus IDLED
    • FINISHED

      public static final RunStatus FINISHED
    • SKIPPED

      public static final RunStatus SKIPPED
  • Method Details

    • values

      public static RunStatus[] 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 RunStatus 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
    • getValue

      public String getValue()
    • toString

      public String toString()
      Overrides:
      toString in class Enum<RunStatus>
    • fromValue

      public static RunStatus fromValue(String value)