Class ConvertingParameterAccessor
java.lang.Object
org.springframework.data.mongodb.repository.query.ConvertingParameterAccessor
- All Implemented Interfaces:
Iterable<Object>
,MongoParameterAccessor
,ParameterAccessor
Custom
ParameterAccessor
that uses a MongoWriter
to serialize parameters into Mongo format.- Author:
- Oliver Gierke, Christoph Strobl, Thomas Darimont, Mark Paluch
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic interface
CustomIterator
that adds a method to access elements in a converted manner. -
Constructor Summary
ConstructorDescriptionConvertingParameterAccessor
(MongoWriter<?> writer, MongoParameterAccessor delegate) Creates a newConvertingParameterAccessor
with the givenMongoWriter
and delegate. -
Method Summary
Modifier and TypeMethodDescriptionClass<?>
getBindableValue
(int index) Returns theCollation
to be used for the query.Returns aDistance
to be applied to Mongo geo queries.Returns theTextCriteria
to be used for full text query.Returns thePoint
to use for a geo-near query.getLimit()
getSort()
Returns theUpdate
to be used for an update execution.Object[]
Returns the raw parameter values of the underlying query method.boolean
iterator()
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Constructor Details
-
ConvertingParameterAccessor
Creates a newConvertingParameterAccessor
with the givenMongoWriter
and delegate.- Parameters:
writer
- must not be null.delegate
- must not be null.
-
-
Method Details
-
iterator
- Specified by:
iterator
in interfaceIterable<Object>
- Specified by:
iterator
in interfaceParameterAccessor
-
getScrollPosition
- Specified by:
getScrollPosition
in interfaceParameterAccessor
-
getPageable
- Specified by:
getPageable
in interfaceParameterAccessor
-
getSort
- Specified by:
getSort
in interfaceParameterAccessor
-
findDynamicProjection
- Specified by:
findDynamicProjection
in interfaceParameterAccessor
-
getBindableValue
- Specified by:
getBindableValue
in interfaceParameterAccessor
-
getDistanceRange
Description copied from interface:MongoParameterAccessor
Returns aDistance
to be applied to Mongo geo queries.- Specified by:
getDistanceRange
in interfaceMongoParameterAccessor
- Returns:
- the maximum distance to apply to the geo query or null if there's no
Distance
parameter at all or the given value for it was null.
-
getGeoNearLocation
Description copied from interface:MongoParameterAccessor
Returns thePoint
to use for a geo-near query.- Specified by:
getGeoNearLocation
in interfaceMongoParameterAccessor
- Returns:
-
getFullText
Description copied from interface:MongoParameterAccessor
Returns theTextCriteria
to be used for full text query.- Specified by:
getFullText
in interfaceMongoParameterAccessor
- Returns:
- null if not set.
-
getCollation
Description copied from interface:MongoParameterAccessor
Returns theCollation
to be used for the query.- Specified by:
getCollation
in interfaceMongoParameterAccessor
- Returns:
- null if not set.
-
getUpdate
Description copied from interface:MongoParameterAccessor
Returns theUpdate
to be used for an update execution.- Specified by:
getUpdate
in interfaceMongoParameterAccessor
- Returns:
- null if not present.
-
getLimit
- Specified by:
getLimit
in interfaceParameterAccessor
-
hasBindableNullValue
public boolean hasBindableNullValue()- Specified by:
hasBindableNullValue
in interfaceParameterAccessor
-
getValues
Description copied from interface:MongoParameterAccessor
Returns the raw parameter values of the underlying query method.- Specified by:
getValues
in interfaceMongoParameterAccessor
- Returns:
-