Enum Class Exp.Type

java.lang.Object
java.lang.Enum<Exp.Type>
com.aerospike.client.exp.Exp.Type
All Implemented Interfaces:
Serializable, Comparable<Exp.Type>, Constable
Enclosing class:
Exp

public static enum Exp.Type extends Enum<Exp.Type>
Expression type.
  • Enum Constant Details

    • NIL

      public static final Exp.Type NIL
    • BOOL

      public static final Exp.Type BOOL
    • INT

      public static final Exp.Type INT
    • STRING

      public static final Exp.Type STRING
    • LIST

      public static final Exp.Type LIST
    • MAP

      public static final Exp.Type MAP
    • BLOB

      public static final Exp.Type BLOB
    • FLOAT

      public static final Exp.Type FLOAT
    • GEO

      public static final Exp.Type GEO
    • HLL

      public static final Exp.Type HLL
  • Field Details

    • code

      public final int code
  • Method Details

    • values

      public static Exp.Type[] 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 Exp.Type 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