Uses of Class
com.aerospike.client.cdt.ListPolicy
Packages that use ListPolicy
-
Uses of ListPolicy in com.aerospike.client.cdt
Fields in com.aerospike.client.cdt declared as ListPolicyModifier and TypeFieldDescriptionstatic final ListPolicy
ListPolicy.Default
Default unordered list with normal write semantics.Methods in com.aerospike.client.cdt with parameters of type ListPolicyModifier and TypeMethodDescriptionstatic Operation
ListOperation.append
(ListPolicy policy, String binName, Value value, CTX... ctx) Create list append operation with policy.static Operation
ListOperation.appendItems
(ListPolicy policy, String binName, List<Value> list, CTX... ctx) Create list append items operation with policy.static Operation
ListOperation.increment
(ListPolicy policy, String binName, int index, CTX... ctx) Create list increment operation with policy.static Operation
ListOperation.increment
(ListPolicy policy, String binName, int index, Value value, CTX... ctx) Create list increment operation.static Operation
ListOperation.insert
(ListPolicy policy, String binName, int index, Value value, CTX... ctx) Create list insert operation with policy.static Operation
ListOperation.insertItems
(ListPolicy policy, String binName, int index, List<Value> list, CTX... ctx) Create list insert items operation with policy.static Operation
ListOperation.set
(ListPolicy policy, String binName, int index, Value value, CTX... ctx) Create list set operation with policy. -
Uses of ListPolicy in com.aerospike.client.exp
Methods in com.aerospike.client.exp with parameters of type ListPolicyModifier and TypeMethodDescriptionstatic Exp
ListExp.append
(ListPolicy policy, Exp value, Exp bin, CTX... ctx) Create expression that appends value to end of list.static Exp
ListExp.appendItems
(ListPolicy policy, Exp list, Exp bin, CTX... ctx) Create expression that appends list items to end of list.static Exp
Create expression that increments list[index] by value.static Exp
Create expression that inserts value to specified index of list.static Exp
ListExp.insertItems
(ListPolicy policy, Exp index, Exp list, Exp bin, CTX... ctx) Create expression that inserts each input list item starting at specified index of list.static Exp
Create expression that sets item value at specified index in list.