Enum Class Result.ResultType

java.lang.Object
java.lang.Enum<Result.ResultType>
com.yahoo.documentapi.Result.ResultType
All Implemented Interfaces:
Serializable, Comparable<Result.ResultType>, Constable
Enclosing class:
Result

public static enum Result.ResultType extends Enum<Result.ResultType>
The types that a Result can have.
  • Enum Constant Details

    • SUCCESS

      public static final Result.ResultType SUCCESS
      The request was successful, no error information is attached.
    • TRANSIENT_ERROR

      public static final Result.ResultType TRANSIENT_ERROR
      The request failed, but may be successful if retried at a later time.
    • FATAL_ERROR

      public static final Result.ResultType FATAL_ERROR
      The request failed, and retrying is pointless.
    • CONDITION_NOT_MET_ERROR

      @Deprecated(since="7", forRemoval=true) public static final Result.ResultType CONDITION_NOT_MET_ERROR
      Deprecated, for removal: This API element is subject to removal in a future version.
      Condition specified in operation not met error
  • Method Details

    • values

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