Uses of Interface
org.springframework.data.keyvalue.core.KeyValueAdapter
Packages that use KeyValueAdapter
Package
Description
Core key/value implementation.
Repository implementation backed by generic
Map
instances.-
Uses of KeyValueAdapter in org.springframework.data.keyvalue.core
Classes in org.springframework.data.keyvalue.core with type parameters of type KeyValueAdapterModifier and TypeClassDescriptionclass
QueryEngine<ADAPTER extends KeyValueAdapter,
CRITERIA, SORT> Base implementation for accessing and executingKeyValueQuery
against aKeyValueAdapter
.Classes in org.springframework.data.keyvalue.core that implement KeyValueAdapterModifier and TypeClassDescriptionclass
Base implementation ofKeyValueAdapter
holdsQueryEngine
to delegate find and count execution to.Methods in org.springframework.data.keyvalue.core that return KeyValueAdapterModifier and TypeMethodDescriptionKeyValueOperations.getKeyValueAdapter()
KeyValueTemplate.getKeyValueAdapter()
Methods in org.springframework.data.keyvalue.core that return types with arguments of type KeyValueAdapterModifier and TypeMethodDescriptionprotected QueryEngine<? extends KeyValueAdapter,
?, ?> AbstractKeyValueAdapter.getQueryEngine()
Get theQueryEngine
used.Methods in org.springframework.data.keyvalue.core with parameters of type KeyValueAdapterModifier and TypeMethodDescriptionKeyValueCallback.doInKeyValue
(KeyValueAdapter adapter) Gets called byKeyValueTemplate#execute(KeyValueCallback)
.void
QueryEngine.registerAdapter
(KeyValueAdapter adapter) Constructors in org.springframework.data.keyvalue.core with parameters of type KeyValueAdapterModifierConstructorDescriptionKeyValueTemplate
(KeyValueAdapter adapter) KeyValueTemplate
(KeyValueAdapter adapter, MappingContext<? extends KeyValuePersistentEntity<?, ?>, ? extends KeyValuePersistentProperty<?>> mappingContext) KeyValueTemplate
(KeyValueAdapter adapter, MappingContext<? extends KeyValuePersistentEntity<?, ?>, ? extends KeyValuePersistentProperty<?>> mappingContext, IdentifierGenerator identifierGenerator) Constructor parameters in org.springframework.data.keyvalue.core with type arguments of type KeyValueAdapterModifierConstructorDescriptionprotected
AbstractKeyValueAdapter
(QueryEngine<? extends KeyValueAdapter, ?, ?> engine) Creates newAbstractKeyValueAdapter
with using the default query engine. -
Uses of KeyValueAdapter in org.springframework.data.map
Classes in org.springframework.data.map that implement KeyValueAdapterConstructor parameters in org.springframework.data.map with type arguments of type KeyValueAdapterModifierConstructorDescriptionMapKeyValueAdapter
(Class<? extends Map> mapType, QueryEngine<? extends KeyValueAdapter, ?, ?> engine) Creates a newMapKeyValueAdapter
using the givenMap
as backing store and query engine.MapKeyValueAdapter
(Map<String, Map<Object, Object>> store, QueryEngine<? extends KeyValueAdapter, ?, ?> engine) Create new instance ofMapKeyValueAdapter
using given dataStore for persistence and query engine.MapKeyValueAdapter
(QueryEngine<? extends KeyValueAdapter, ?, ?> engine) Create newMapKeyValueAdapter
using the given query engine.