Skip navigation links
B C D G J K O P Q 

B

bind(String, Object) - Method in interface jakarta.nosql.keyvalue.KeyValuePreparedStatement
Binds an argument to a positional parameter.
BucketManager - Interface in jakarta.nosql.keyvalue
Interface used to interact with the persistence context to KeyValueEntity The BucketManager API is used to create and remove persistent KeyValueEntity.
BucketManagerFactory - Interface in jakarta.nosql.keyvalue
BucketManager factory.

C

close() - Method in interface jakarta.nosql.keyvalue.BucketManager
closes a resource
close() - Method in interface jakarta.nosql.keyvalue.BucketManagerFactory
closes a resource

D

delete(K) - Method in interface jakarta.nosql.keyvalue.BucketManager
Removes an entity from key
delete(Iterable<K>) - Method in interface jakarta.nosql.keyvalue.BucketManager
Removes entities from keys

G

get(K) - Method in interface jakarta.nosql.keyvalue.BucketManager
Finds the Value from a key
get(Iterable<K>) - Method in interface jakarta.nosql.keyvalue.BucketManager
Finds a list of values from keys
get() - Method in interface jakarta.nosql.keyvalue.KeyValueConfiguration
Reads configuration either from default configuration or a file defined by NoSQL provider and then creates a BucketManagerFactory instance.
get(Settings) - Method in interface jakarta.nosql.keyvalue.KeyValueConfiguration
Reads configuration from the Settings instance, the parameters are defined by NoSQL provider, then creates a BucketManagerFactory instance.
getBucketManager(String) - Method in interface jakarta.nosql.keyvalue.BucketManagerFactory
Creates a BucketManager from a bucket name
getConfiguration() - Static method in interface jakarta.nosql.keyvalue.KeyValueConfiguration
creates and returns a KeyValueConfiguration instance from ServiceLoader
getConfiguration(Class<T>) - Static method in interface jakarta.nosql.keyvalue.KeyValueConfiguration
creates and returns a KeyValueConfiguration instance from ServiceLoader for a particular provider implementation.
getKey() - Method in interface jakarta.nosql.keyvalue.KeyValueEntity
the key
getKey(Class<K>) - Method in interface jakarta.nosql.keyvalue.KeyValueEntity
getKey(TypeSupplier<K>) - Method in interface jakarta.nosql.keyvalue.KeyValueEntity
getList(String, Class<T>) - Method in interface jakarta.nosql.keyvalue.BucketManagerFactory
Creates a List from bucket name
getMap(String, Class<K>, Class<V>) - Method in interface jakarta.nosql.keyvalue.BucketManagerFactory
Creates a Map from bucket name
getQueue(String, Class<T>) - Method in interface jakarta.nosql.keyvalue.BucketManagerFactory
Creates a Queue from bucket name
getResult() - Method in interface jakarta.nosql.keyvalue.KeyValuePreparedStatement
Executes a query and return the result as Stream
getSet(String, Class<T>) - Method in interface jakarta.nosql.keyvalue.BucketManagerFactory
Creates a Set from bucket name
getSingleResult() - Method in interface jakarta.nosql.keyvalue.KeyValuePreparedStatement
Returns the result as a single element otherwise it will return an Optional.empty()
getValue() - Method in interface jakarta.nosql.keyvalue.KeyValueEntity
The value
getValue(Class<V>) - Method in interface jakarta.nosql.keyvalue.KeyValueEntity
getValue(TypeSupplier<V>) - Method in interface jakarta.nosql.keyvalue.KeyValueEntity

J

jakarta.nosql.keyvalue - package jakarta.nosql.keyvalue
Defines the API to Key-value API in communication level.

K

KeyValueConfiguration - Interface in jakarta.nosql.keyvalue
The Jakarta NoSQL communication configuration to create a BucketManagerFactory
KeyValueEntity - Interface in jakarta.nosql.keyvalue
A bucket unit, it's a tuple that contains key its respective value.
KeyValueEntity.KeyValueEntityProvider - Interface in jakarta.nosql.keyvalue
A provider of KeyValueEntity where it will return from two values where the first one is the key and the second one is the value of the entity.
KeyValuePreparedStatement - Interface in jakarta.nosql.keyvalue
 
KeyValueQueryParser - Interface in jakarta.nosql.keyvalue
A query parser to key-value database type, this class will convert a String to an operation in BucketManager.

O

of(K, V) - Static method in interface jakarta.nosql.keyvalue.KeyValueEntity
Creates a Key value instance

P

prepare(String) - Method in interface jakarta.nosql.keyvalue.BucketManager
Executes a query and returns the result, when the operations are put, remove and get command it will return the result of the operation when the command is either remove or put it will return an empty collection.
prepare(String, BucketManager) - Method in interface jakarta.nosql.keyvalue.KeyValueQueryParser
Executes a query and returns a KeyValuePreparedStatement, when the operations are insert, update and select command it will return the result of the operation when the command is del it will return an empty collection.
put(K, V) - Method in interface jakarta.nosql.keyvalue.BucketManager
Associates the specified value with the specified key and than storage
put(KeyValueEntity) - Method in interface jakarta.nosql.keyvalue.BucketManager
Saves the KeyValueEntity
put(KeyValueEntity, Duration) - Method in interface jakarta.nosql.keyvalue.BucketManager
Saves the KeyValueEntity with time to live
put(Iterable<KeyValueEntity>) - Method in interface jakarta.nosql.keyvalue.BucketManager
Saves the Iterable of keys
put(Iterable<KeyValueEntity>, Duration) - Method in interface jakarta.nosql.keyvalue.BucketManager
Saves the Iterable of keys with a defined time to live

Q

query(String) - Method in interface jakarta.nosql.keyvalue.BucketManager
Executes a query and returns the result, when the operations are put, remove and get command it will return the result of the operation when the command is remove or put it will return an empty collection.
query(String, BucketManager) - Method in interface jakarta.nosql.keyvalue.KeyValueQueryParser
Executes a query and returns the result, when the operations are put, get and del command it will return the result of the operation when the command is either put or del it will return an empty collection.
B C D G J K O P Q 
Skip navigation links

Copyright © 2017–2021 Eclipse Foundation. All rights reserved.