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 TypeClassDescriptionclassQueryEngine<ADAPTER extends KeyValueAdapter,CRITERIA, SORT> Base implementation for accessing and executingKeyValueQueryagainst aKeyValueAdapter.Classes in org.springframework.data.keyvalue.core that implement KeyValueAdapterModifier and TypeClassDescriptionclassBase implementation ofKeyValueAdapterholdsQueryEngineto 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 theQueryEngineused.Methods in org.springframework.data.keyvalue.core with parameters of type KeyValueAdapterModifier and TypeMethodDescriptionKeyValueCallback.doInKeyValue(KeyValueAdapter adapter) Gets called byKeyValueTemplate#execute(KeyValueCallback).voidQueryEngine.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 KeyValueAdapterModifierConstructorDescriptionprotectedAbstractKeyValueAdapter(QueryEngine<? extends KeyValueAdapter, ?, ?> engine) Creates newAbstractKeyValueAdapterwith 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 newMapKeyValueAdapterusing the givenMapas backing store and query engine.MapKeyValueAdapter(Map<String, Map<Object, Object>> store, QueryEngine<? extends KeyValueAdapter, ?, ?> engine) Create new instance ofMapKeyValueAdapterusing given dataStore for persistence and query engine.MapKeyValueAdapter(QueryEngine<? extends KeyValueAdapter, ?, ?> engine) Create newMapKeyValueAdapterusing the given query engine.