Enum ResponseType

java.lang.Object
java.lang.Enum<ResponseType>
io.vertx.redis.client.ResponseType
All Implemented Interfaces:
Serializable, Comparable<ResponseType>

public enum ResponseType extends Enum<ResponseType>
Define the response types that the client can receive from REDIS.
  • Enum Constant Details

    • SIMPLE

      public static final ResponseType SIMPLE
      C String simple String.
    • ERROR

      public static final ResponseType ERROR
      C String simple String representing an error.
    • BOOLEAN

      public static final ResponseType BOOLEAN
      boolean value.
    • NUMBER

      public static final ResponseType NUMBER
      numeric value.
    • BULK

      public static final ResponseType BULK
      byte array value.
    • PUSH

      public static final ResponseType PUSH
      Push message
    • ATTRIBUTE

      public static final ResponseType ATTRIBUTE
      Attribute message
    • MULTI

      public static final ResponseType MULTI
      List of multiple bulk responses (List, Set, Map).
  • Method Details

    • values

      public static ResponseType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static ResponseType valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null