Uses of Interface
org.eclipse.rdf4j.spring.dao.support.MappingPostProcessor
-
Packages that use MappingPostProcessor Package Description org.eclipse.rdf4j.spring.dao.support.operation -
-
Uses of MappingPostProcessor in org.eclipse.rdf4j.spring.dao.support.operation
Methods in org.eclipse.rdf4j.spring.dao.support.operation with parameters of type MappingPostProcessor Modifier and Type Method Description <T,O>
List<O>TupleQueryResultConverter. toList(BindingSetMapper<T> mapper, MappingPostProcessor<T,O> postProcessor)
Maps the query result to aList
.<T,O>
Set<O>TupleQueryResultConverter. toSet(BindingSetMapper<T> mapper, MappingPostProcessor<T,O> postProcessor)
Maps the query result to aSet
.<T,O>
OTupleQueryResultConverter. toSingleton(BindingSetMapper<T> mapper, MappingPostProcessor<T,O> postProcessor)
Maps the firstBindingSet
in the result, throwing an exception if there are no results or more than one.<T,O>
OTupleQueryResultConverter. toSingletonMaybe(BindingSetMapper<T> mapper, MappingPostProcessor<T,O> postProcessor)
Maps the firstBindingSet
in the result if one exists, throwing an exception if there are more.<T,O>
Optional<O>TupleQueryResultConverter. toSingletonOptional(BindingSetMapper<T> mapper, MappingPostProcessor<T,O> postProcessor)
<T,O>
Stream<O>TupleQueryResultConverter. toStream(BindingSetMapper<T> mapper, MappingPostProcessor<T,O> postProcessor)
Obtains aStream
of mapped query results, using the postprocessor to map it again.
-