Uses of Class
org.springframework.data.keyvalue.core.QueryEngine
Packages that use QueryEngine
Package
Description
Core key/value implementation.
Repository implementation backed by generic
Map instances.-
Uses of QueryEngine in org.springframework.data.keyvalue.core
Subclasses of QueryEngine in org.springframework.data.keyvalue.coreModifier and TypeClassDescriptionclassQueryEngineimplementation specific for executingPredicatebasedKeyValueQueryagainstKeyValueAdapter.classQueryEngineimplementation specific for executingSpelExpressionbasedKeyValueQueryagainstKeyValueAdapter.Methods in org.springframework.data.keyvalue.core that return QueryEngineModifier and TypeMethodDescriptionQueryEngine<?,?, ?> QueryEngineFactory.create()Factory method for creating aQueryEngine.protected QueryEngine<? extends KeyValueAdapter,?, ?> AbstractKeyValueAdapter.getQueryEngine()Get theQueryEngineused.Constructors in org.springframework.data.keyvalue.core with parameters of type QueryEngineModifierConstructorDescriptionprotectedAbstractKeyValueAdapter(QueryEngine<? extends KeyValueAdapter, ?, ?> engine) Creates newAbstractKeyValueAdapterwith using the default query engine. -
Uses of QueryEngine in org.springframework.data.map
Constructors in org.springframework.data.map with parameters of type QueryEngineModifierConstructorDescriptionMapKeyValueAdapter(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.