Enum Class RequestStatusState

java.lang.Object
java.lang.Enum<RequestStatusState>
org.apache.solr.client.solrj.response.RequestStatusState
All Implemented Interfaces:
Serializable, Comparable<RequestStatusState>, java.lang.constant.Constable

public enum RequestStatusState extends Enum<RequestStatusState>
Represents the state of an asynchronous request.
See Also:
  • Enum Constant Details

    • COMPLETED

      public static final RequestStatusState COMPLETED
      The request was completed.
    • FAILED

      public static final RequestStatusState FAILED
      The request has failed.
    • RUNNING

      public static final RequestStatusState RUNNING
      The request is in progress.
    • SUBMITTED

      public static final RequestStatusState SUBMITTED
      The request was submitted, but has not yet started.
    • NOT_FOUND

      public static final RequestStatusState NOT_FOUND
      The request was not found.
  • Method Details

    • values

      public static RequestStatusState[] 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 RequestStatusState 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
    • getKey

      public String getKey()
      Returns the string representation of this state, for using as a key. For backward compatibility, it returns the lowercase form of the state's name.
    • fromKey

      public static RequestStatusState fromKey(String key)
      Resolves a key that was returned from getKey() to a RequestStatusState. For backwards compatibility, it resolves the key "notfound" to NOT_FOUND.