|
Spring Data Key-Value | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface BucketKeyValueStoreOperations
| Method Summary | ||
|---|---|---|
|
containsKey(B bucket,
K key)
Variant of KeyValueStoreOperations.containsKey(Object)
that takes a discreet bucket and key pair. |
|
|
delete(B bucket,
K key)
Delete a specific entry from this data store. |
|
|
get(B bucket,
K key)
Variant of KeyValueStoreOperations.get(Object)
that takes a discreet bucket and key pair. |
|
|
getAndSet(B bucket,
K key,
V value)
Variant of KeyValueStoreOperations.getAndSet(Object,
Object) that takes a discreet bucket and key pair. |
|
|
getAndSetAsBytes(B bucket,
K key,
byte[] value)
Variant of KeyValueStoreOperations.getAndSetAsBytes(Object,
byte[]) that takes a discreet bucket and key pair. |
|
|
getAndSetAsType(B bucket,
K key,
V value,
Class<T> requiredType)
Variant of KeyValueStoreOperations.getAndSetAsType(Object,
Object, Class) that takes a discreet bucket and key pair. |
|
|
getAsBytes(B bucket,
K key)
Variant of KeyValueStoreOperations.getAsBytes(Object)
that takes a discreet bucket and key pair. |
|
|
getAsType(B bucket,
K key,
Class<T> requiredType)
Variant of KeyValueStoreOperations.getAsType(Object,
Class) that takes a discreet bucket and key pair. |
|
|
set(B bucket,
K key,
V value)
Variant of KeyValueStoreOperations.set(Object,
Object) that takes a discreet bucket and key pair. |
|
|
set(B bucket,
K key,
V value,
QosParameters qosParams)
Variant of KeyValueStoreOperations.set(Object,
Object, QosParameters) that takes a discreet bucket and key pair. |
|
|
setAsBytes(B bucket,
K key,
byte[] value)
Variant of KeyValueStoreOperations.setAsBytes(Object,
byte[]) that takes a discreet bucket and key pair. |
|
|
setAsBytes(B bucket,
K key,
byte[] value,
QosParameters qosParams)
Variant of KeyValueStoreOperations.setAsBytes(Object,
byte[], QosParameters) that takes a discreet bucket and key pair. |
|
|
setIfKeyNonExistent(B bucket,
K key,
V value)
Variant of KeyValueStoreOperations.setIfKeyNonExistent(Object,
Object) that takes a discreet bucket and key pair. |
|
|
setIfKeyNonExistentAsBytes(B bucket,
K key,
byte[] value)
Variant of KeyValueStoreOperations.setIfKeyNonExistentAsBytes(Object,
byte[]) that takes a discreet bucket and key pair. |
|
|
setWithMetaData(B bucket,
K key,
V value,
Map<String,String> metaData)
Variant of KeyValueStoreOperations.setWithMetaData(Object,
Object, java.util.Map) that takes a discreet bucket and key pair. |
|
|
setWithMetaData(B bucket,
K key,
V value,
Map<String,String> metaData,
QosParameters qosParams)
Variant of KeyValueStoreOperations.setWithMetaData(Object,
Object, java.util.Map, QosParameters) that takes a discreet bucket and key pair. |
|
| Method Detail |
|---|
<B,K,V> BucketKeyValueStoreOperations set(B bucket,
K key,
V value)
KeyValueStoreOperations.set(Object,
Object) that takes a discreet bucket and key pair.
bucket - key - value -
<B,K,V> BucketKeyValueStoreOperations set(B bucket,
K key,
V value,
QosParameters qosParams)
KeyValueStoreOperations.set(Object,
Object, QosParameters) that takes a discreet bucket and key pair.
bucket - key - value - qosParams -
<B,K> BucketKeyValueStoreOperations setAsBytes(B bucket,
K key,
byte[] value)
KeyValueStoreOperations.setAsBytes(Object,
byte[]) that takes a discreet bucket and key pair.
bucket - key - value -
<B,K,V> BucketKeyValueStoreOperations setWithMetaData(B bucket,
K key,
V value,
Map<String,String> metaData,
QosParameters qosParams)
KeyValueStoreOperations.setWithMetaData(Object,
Object, java.util.Map, QosParameters) that takes a discreet bucket and key pair.
bucket - key - value - metaData - qosParams -
<B,K,V> V get(B bucket,
K key)
KeyValueStoreOperations.get(Object)
that takes a discreet bucket and key pair.
bucket - key -
<B,K> byte[] getAsBytes(B bucket,
K key)
KeyValueStoreOperations.getAsBytes(Object)
that takes a discreet bucket and key pair.
bucket - key -
<B,K,T> T getAsType(B bucket,
K key,
Class<T> requiredType)
KeyValueStoreOperations.getAsType(Object,
Class) that takes a discreet bucket and key pair.
bucket - key - requiredType -
<B,K,V> V getAndSet(B bucket,
K key,
V value)
KeyValueStoreOperations.getAndSet(Object,
Object) that takes a discreet bucket and key pair.
bucket - key - value -
<B,K> byte[] getAndSetAsBytes(B bucket,
K key,
byte[] value)
KeyValueStoreOperations.getAndSetAsBytes(Object,
byte[]) that takes a discreet bucket and key pair.
bucket - key - value -
<B,K,V,T> T getAndSetAsType(B bucket,
K key,
V value,
Class<T> requiredType)
KeyValueStoreOperations.getAndSetAsType(Object,
Object, Class) that takes a discreet bucket and key pair.
bucket - key - value - requiredType -
<B,K,V> BucketKeyValueStoreOperations setIfKeyNonExistent(B bucket,
K key,
V value)
KeyValueStoreOperations.setIfKeyNonExistent(Object,
Object) that takes a discreet bucket and key pair.
bucket - key - value -
<B,K> BucketKeyValueStoreOperations setIfKeyNonExistentAsBytes(B bucket,
K key,
byte[] value)
KeyValueStoreOperations.setIfKeyNonExistentAsBytes(Object,
byte[]) that takes a discreet bucket and key pair.
bucket - key - value -
<B,K> boolean containsKey(B bucket,
K key)
KeyValueStoreOperations.containsKey(Object)
that takes a discreet bucket and key pair.
bucket - key -
<B,K> boolean delete(B bucket,
K key)
bucket - key -
<B,K> BucketKeyValueStoreOperations setAsBytes(B bucket,
K key,
byte[] value,
QosParameters qosParams)
KeyValueStoreOperations.setAsBytes(Object,
byte[], QosParameters) that takes a discreet bucket and key pair.
bucket - key - value - qosParams -
<B,K,V> BucketKeyValueStoreOperations setWithMetaData(B bucket,
K key,
V value,
Map<String,String> metaData)
KeyValueStoreOperations.setWithMetaData(Object,
Object, java.util.Map) that takes a discreet bucket and key pair.
bucket - key - value - metaData -
|
Spring Data Key-Value | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||