Uses of Enum Class
com.aerospike.client.exp.Exp.Type

Packages that use Exp.Type
Package
Description
 
  • Uses of Exp.Type in com.aerospike.client.exp

    Methods in com.aerospike.client.exp that return Exp.Type
    Modifier and Type
    Method
    Description
    static Exp.Type
    Exp.Type.valueOf(String name)
    Returns the enum constant of this class with the specified name.
    static Exp.Type[]
    Exp.Type.values()
    Returns an array containing the constants of this enum class, in the order they are declared.
    Methods in com.aerospike.client.exp with parameters of type Exp.Type
    Modifier and Type
    Method
    Description
    static Exp
    Exp.bin(String name, Exp.Type type)
    Create bin expression of specified type.
    static Exp
    ListExp.getByIndex(int returnType, Exp.Type valueType, Exp index, Exp bin, CTX... ctx)
    Create expression that selects list item identified by index and returns selected data specified by returnType.
    static Exp
    MapExp.getByIndex(int returnType, Exp.Type valueType, Exp index, Exp bin, CTX... ctx)
    Create expression that selects map item identified by index and returns selected data specified by returnType (See MapReturnType).
    static Exp
    MapExp.getByKey(int returnType, Exp.Type valueType, Exp key, Exp bin, CTX... ctx)
    Create expression that selects map item identified by key and returns selected data specified by returnType.
    static Exp
    ListExp.getByRank(int returnType, Exp.Type valueType, Exp rank, Exp bin, CTX... ctx)
    Create expression that selects list item identified by rank and returns selected data specified by returnType.
    static Exp
    MapExp.getByRank(int returnType, Exp.Type valueType, Exp rank, Exp bin, CTX... ctx)
    Create expression that selects map item identified by rank and returns selected data specified by returnType (See MapReturnType).
    static Exp
    Exp.key(Exp.Type type)
    Create record key expression of specified type.