Uses of Interface
org.eclipse.rdf4j.spring.dao.support.MappingPostProcessor
-
Uses of MappingPostProcessor in org.eclipse.rdf4j.spring.dao.support.operation
Modifier and TypeMethodDescription<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> O
TupleQueryResultConverter.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> O
TupleQueryResultConverter.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.