Package | Description |
---|---|
com.aerospike.client.cdt |
Modifier and Type | Method and Description |
---|---|
static CTX |
CTX.listIndex(int index)
Lookup list by base list's index offset.
|
static CTX |
CTX.listIndexCreate(int index,
ListOrder order,
boolean pad)
Lookup list by base list's index offset.
|
static CTX |
CTX.listRank(int rank)
Lookup list by rank.
|
static CTX |
CTX.listValue(Value key)
Lookup list by value.
|
static CTX |
CTX.mapIndex(int index)
Lookup map by index offset.
|
static CTX |
CTX.mapKey(Value key)
Lookup map by base map's key.
|
static CTX |
CTX.mapKeyCreate(Value key,
MapOrder order)
Lookup map by base map's key.
|
static CTX |
CTX.mapRank(int rank)
Lookup map by rank.
|
static CTX |
CTX.mapValue(Value key)
Lookup map by value.
|
Modifier and Type | Method and Description |
---|---|
static Operation |
ListOperation.append(ListPolicy policy,
String binName,
Value value,
CTX... ctx)
Create list append operation with policy.
|
static Operation |
ListOperation.append(String binName,
Value value,
CTX... ctx)
Create default list append operation.
|
static Operation |
ListOperation.appendItems(ListPolicy policy,
String binName,
List<Value> list,
CTX... ctx)
Create list append items operation with policy.
|
static Operation |
ListOperation.appendItems(String binName,
List<Value> list,
CTX... ctx)
Create default list append items operation.
|
static Operation |
ListOperation.clear(String binName,
CTX... ctx)
Create list clear operation.
|
static Operation |
MapOperation.clear(String binName,
CTX... ctx)
Create map clear operation.
|
static Operation |
ListOperation.create(String binName,
ListOrder order,
boolean pad,
CTX... ctx)
Create list create operation.
|
static Operation |
MapOperation.create(String binName,
MapOrder order,
CTX... ctx)
Create map create operation.
|
static Operation |
MapOperation.decrement(MapPolicy policy,
String binName,
Value key,
Value decr,
CTX... ctx)
Create map decrement operation.
|
static Operation |
ListOperation.get(String binName,
int index,
CTX... ctx)
Create list get operation.
|
static Operation |
ListOperation.getByIndex(String binName,
int index,
int returnType,
CTX... ctx)
Create list get by index operation.
|
static Operation |
MapOperation.getByIndex(String binName,
int index,
int returnType,
CTX... ctx)
Create map get by index operation.
|
static Operation |
ListOperation.getByIndexRange(String binName,
int index,
int returnType,
CTX... ctx)
Create list get by index range operation.
|
static Operation |
MapOperation.getByIndexRange(String binName,
int index,
int returnType,
CTX... ctx)
Create map get by index range operation.
|
static Operation |
ListOperation.getByIndexRange(String binName,
int index,
int count,
int returnType,
CTX... ctx)
Create list get by index range operation.
|
static Operation |
MapOperation.getByIndexRange(String binName,
int index,
int count,
int returnType,
CTX... ctx)
Create map get by index range operation.
|
static Operation |
MapOperation.getByKey(String binName,
Value key,
int returnType,
CTX... ctx)
Create map get by key operation.
|
static Operation |
MapOperation.getByKeyList(String binName,
List<Value> keys,
int returnType,
CTX... ctx)
Create map get by key list operation.
|
static Operation |
MapOperation.getByKeyRange(String binName,
Value keyBegin,
Value keyEnd,
int returnType,
CTX... ctx)
Create map get by key range operation.
|
static Operation |
MapOperation.getByKeyRelativeIndexRange(String binName,
Value key,
int index,
int returnType,
CTX... ctx)
Create map get by key relative to index range operation.
|
static Operation |
MapOperation.getByKeyRelativeIndexRange(String binName,
Value key,
int index,
int count,
int returnType,
CTX... ctx)
Create map get by key relative to index range operation.
|
static Operation |
ListOperation.getByRank(String binName,
int rank,
int returnType,
CTX... ctx)
Create list get by rank operation.
|
static Operation |
MapOperation.getByRank(String binName,
int rank,
int returnType,
CTX... ctx)
Create map get by rank operation.
|
static Operation |
ListOperation.getByRankRange(String binName,
int rank,
int returnType,
CTX... ctx)
Create list get by rank range operation.
|
static Operation |
MapOperation.getByRankRange(String binName,
int rank,
int returnType,
CTX... ctx)
Create map get by rank range operation.
|
static Operation |
ListOperation.getByRankRange(String binName,
int rank,
int count,
int returnType,
CTX... ctx)
Create list get by rank range operation.
|
static Operation |
MapOperation.getByRankRange(String binName,
int rank,
int count,
int returnType,
CTX... ctx)
Create map get by rank range operation.
|
static Operation |
ListOperation.getByValue(String binName,
Value value,
int returnType,
CTX... ctx)
Create list get by value operation.
|
static Operation |
MapOperation.getByValue(String binName,
Value value,
int returnType,
CTX... ctx)
Create map get by value operation.
|
static Operation |
ListOperation.getByValueList(String binName,
List<Value> values,
int returnType,
CTX... ctx)
Create list get by value list operation.
|
static Operation |
MapOperation.getByValueList(String binName,
List<Value> values,
int returnType,
CTX... ctx)
Create map get by value list operation.
|
static Operation |
ListOperation.getByValueRange(String binName,
Value valueBegin,
Value valueEnd,
int returnType,
CTX... ctx)
Create list get by value range operation.
|
static Operation |
MapOperation.getByValueRange(String binName,
Value valueBegin,
Value valueEnd,
int returnType,
CTX... ctx)
Create map get by value range operation.
|
static Operation |
ListOperation.getByValueRelativeRankRange(String binName,
Value value,
int rank,
int returnType,
CTX... ctx)
Create list get by value relative to rank range operation.
|
static Operation |
MapOperation.getByValueRelativeRankRange(String binName,
Value value,
int rank,
int returnType,
CTX... ctx)
Create map get by value relative to rank range operation.
|
static Operation |
ListOperation.getByValueRelativeRankRange(String binName,
Value value,
int rank,
int count,
int returnType,
CTX... ctx)
Create list get by value relative to rank range operation.
|
static Operation |
MapOperation.getByValueRelativeRankRange(String binName,
Value value,
int rank,
int count,
int returnType,
CTX... ctx)
Create map get by value relative to rank range operation.
|
static Operation |
ListOperation.getRange(String binName,
int index,
CTX... ctx)
Create list get range operation.
|
static Operation |
ListOperation.getRange(String binName,
int index,
int count,
CTX... ctx)
Create list get range operation.
|
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 |
MapOperation.increment(MapPolicy policy,
String binName,
Value key,
Value incr,
CTX... ctx)
Create map increment operation.
|
static Operation |
ListOperation.increment(String binName,
int index,
CTX... ctx)
Create default list increment operation.
|
static Operation |
ListOperation.increment(String binName,
int index,
Value value,
CTX... ctx)
Create default 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.insert(String binName,
int index,
Value value,
CTX... ctx)
Create default list insert operation.
|
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.insertItems(String binName,
int index,
List<Value> list,
CTX... ctx)
Create default list insert items operation.
|
static Operation |
ListOperation.pop(String binName,
int index,
CTX... ctx)
Create list pop operation.
|
static Operation |
ListOperation.popRange(String binName,
int index,
CTX... ctx)
Create list pop range operation.
|
static Operation |
ListOperation.popRange(String binName,
int index,
int count,
CTX... ctx)
Create list pop range operation.
|
static Operation |
MapOperation.put(MapPolicy policy,
String binName,
Value key,
Value value,
CTX... ctx)
Create map put operation.
|
static Operation |
MapOperation.putItems(MapPolicy policy,
String binName,
Map<Value,Value> map,
CTX... ctx)
Create map put items operation
Server writes each map item to map bin and returns map size.
|
static Operation |
ListOperation.remove(String binName,
int index,
CTX... ctx)
Create list remove operation.
|
static Operation |
ListOperation.removeByIndex(String binName,
int index,
int returnType,
CTX... ctx)
Create list remove operation.
|
static Operation |
MapOperation.removeByIndex(String binName,
int index,
int returnType,
CTX... ctx)
Create map remove operation.
|
static Operation |
ListOperation.removeByIndexRange(String binName,
int index,
int returnType,
CTX... ctx)
Create list remove operation.
|
static Operation |
MapOperation.removeByIndexRange(String binName,
int index,
int returnType,
CTX... ctx)
Create map remove operation.
|
static Operation |
ListOperation.removeByIndexRange(String binName,
int index,
int count,
int returnType,
CTX... ctx)
Create list remove operation.
|
static Operation |
MapOperation.removeByIndexRange(String binName,
int index,
int count,
int returnType,
CTX... ctx)
Create map remove operation.
|
static Operation |
MapOperation.removeByKey(String binName,
Value key,
int returnType,
CTX... ctx)
Create map remove operation.
|
static Operation |
MapOperation.removeByKeyList(String binName,
List<Value> keys,
int returnType,
CTX... ctx)
Create map remove operation.
|
static Operation |
MapOperation.removeByKeyRange(String binName,
Value keyBegin,
Value keyEnd,
int returnType,
CTX... ctx)
Create map remove operation.
|
static Operation |
MapOperation.removeByKeyRelativeIndexRange(String binName,
Value key,
int index,
int returnType,
CTX... ctx)
Create map remove by key relative to index range operation.
|
static Operation |
MapOperation.removeByKeyRelativeIndexRange(String binName,
Value key,
int index,
int count,
int returnType,
CTX... ctx)
Create map remove by key relative to index range operation.
|
static Operation |
ListOperation.removeByRank(String binName,
int rank,
int returnType,
CTX... ctx)
Create list remove operation.
|
static Operation |
MapOperation.removeByRank(String binName,
int rank,
int returnType,
CTX... ctx)
Create map remove operation.
|
static Operation |
ListOperation.removeByRankRange(String binName,
int rank,
int returnType,
CTX... ctx)
Create list remove operation.
|
static Operation |
MapOperation.removeByRankRange(String binName,
int rank,
int returnType,
CTX... ctx)
Create map remove operation.
|
static Operation |
ListOperation.removeByRankRange(String binName,
int rank,
int count,
int returnType,
CTX... ctx)
Create list remove operation.
|
static Operation |
MapOperation.removeByRankRange(String binName,
int rank,
int count,
int returnType,
CTX... ctx)
Create map remove operation.
|
static Operation |
ListOperation.removeByValue(String binName,
Value value,
int returnType,
CTX... ctx)
Create list remove operation.
|
static Operation |
MapOperation.removeByValue(String binName,
Value value,
int returnType,
CTX... ctx)
Create map remove operation.
|
static Operation |
ListOperation.removeByValueList(String binName,
List<Value> values,
int returnType,
CTX... ctx)
Create list remove operation.
|
static Operation |
MapOperation.removeByValueList(String binName,
List<Value> values,
int returnType,
CTX... ctx)
Create map remove operation.
|
static Operation |
ListOperation.removeByValueRange(String binName,
Value valueBegin,
Value valueEnd,
int returnType,
CTX... ctx)
Create list remove operation.
|
static Operation |
MapOperation.removeByValueRange(String binName,
Value valueBegin,
Value valueEnd,
int returnType,
CTX... ctx)
Create map remove operation.
|
static Operation |
ListOperation.removeByValueRelativeRankRange(String binName,
Value value,
int rank,
int returnType,
CTX... ctx)
Create list remove by value relative to rank range operation.
|
static Operation |
MapOperation.removeByValueRelativeRankRange(String binName,
Value value,
int rank,
int returnType,
CTX... ctx)
Create map remove by value relative to rank range operation.
|
static Operation |
ListOperation.removeByValueRelativeRankRange(String binName,
Value value,
int rank,
int count,
int returnType,
CTX... ctx)
Create list remove by value relative to rank range operation.
|
static Operation |
MapOperation.removeByValueRelativeRankRange(String binName,
Value value,
int rank,
int count,
int returnType,
CTX... ctx)
Create map remove by value relative to rank range operation.
|
static Operation |
ListOperation.removeRange(String binName,
int index,
CTX... ctx)
Create list remove range operation.
|
static Operation |
ListOperation.removeRange(String binName,
int index,
int count,
CTX... ctx)
Create list remove range operation.
|
static Operation |
ListOperation.set(ListPolicy policy,
String binName,
int index,
Value value,
CTX... ctx)
Create list set operation with policy.
|
static Operation |
ListOperation.set(String binName,
int index,
Value value,
CTX... ctx)
Create list set operation.
|
static Operation |
MapOperation.setMapPolicy(MapPolicy policy,
String binName,
CTX... ctx)
Create set map policy operation.
|
static Operation |
ListOperation.setOrder(String binName,
ListOrder order,
CTX... ctx)
Create set list order operation.
|
static Operation |
ListOperation.size(String binName,
CTX... ctx)
Create list size operation.
|
static Operation |
MapOperation.size(String binName,
CTX... ctx)
Create map size operation.
|
static Operation |
ListOperation.sort(String binName,
int sortFlags,
CTX... ctx)
Create list sort operation.
|
static Operation |
ListOperation.trim(String binName,
int index,
int count,
CTX... ctx)
Create list trim operation.
|
Copyright © 2012–2020 Aerospike, Inc. All rights reserved.