Enum ResponseType

    • Enum Constant Detail

      • 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.
      • ATTRIBUTE

        public static final ResponseType ATTRIBUTE
        Attribute message
      • MULTI

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

      • values

        public static ResponseType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (ResponseType c : ResponseType.values())
            System.out.println(c);
        
        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