Class CachedGraphQueryResult
- java.lang.Object
-
- org.eclipse.rdf4j.spring.resultcache.CachedGraphQueryResult
-
- All Implemented Interfaces:
AutoCloseable
,Iterable<Statement>
,CloseableIteration<Statement,QueryEvaluationException>
,Iteration<Statement,QueryEvaluationException>
,GraphQueryResult
,QueryResult<Statement>
public class CachedGraphQueryResult extends Object implements GraphQueryResult
- Since:
- 4.0.0
- Author:
- Florian Kleedorfer
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
Closes this iteration, freeing any resources that it is holding.void
forEach(Consumer<? super Statement> action)
Map<String,String>
getNamespaces()
Retrieves relevant namespaces from the query result.boolean
hasNext()
Returnstrue
if the query result has more elements.Iterator<Statement>
iterator()
Statement
next()
Returns the next element in the query result.void
remove()
Removes from the underlying collection the last element returned by the iteration (optional operation).Spliterator<Statement>
spliterator()
Stream<Statement>
stream()
Convert the result elements to a JavaStream
.
-
-
-
Method Detail
-
getNamespaces
public Map<String,String> getNamespaces() throws QueryEvaluationException
Description copied from interface:GraphQueryResult
Retrieves relevant namespaces from the query result.
The contents of the Map may be modified after it is returned, as the initial return may be performed when the first RDF Statement is encountered.- Specified by:
getNamespaces
in interfaceGraphQueryResult
- Returns:
- a Map<String, String> object containing (prefix, namespace) pairs.
- Throws:
QueryEvaluationException
-
close
public void close() throws QueryEvaluationException
Description copied from interface:CloseableIteration
Closes this iteration, freeing any resources that it is holding. If the iteration has already been closed then invoking this method has no effect.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseableIteration<Statement,QueryEvaluationException>
- Throws:
QueryEvaluationException
-
hasNext
public boolean hasNext() throws QueryEvaluationException
Description copied from interface:QueryResult
Returnstrue
if the query result has more elements. (In other words, returnstrue
ifQueryResult.next()
would return an element rather than throwing aNoSuchElementException
.)- Specified by:
hasNext
in interfaceIteration<Statement,QueryEvaluationException>
- Specified by:
hasNext
in interfaceQueryResult<Statement>
- Returns:
true
if the iteration has more elements.- Throws:
QueryEvaluationException
- if an error occurs while executing the query.
-
next
public Statement next() throws QueryEvaluationException
Description copied from interface:QueryResult
Returns the next element in the query result.- Specified by:
next
in interfaceIteration<Statement,QueryEvaluationException>
- Specified by:
next
in interfaceQueryResult<Statement>
- Returns:
- the next element in the query result.
- Throws:
QueryEvaluationException
- if an error occurs while executing the query.
-
remove
public void remove() throws QueryEvaluationException
Description copied from interface:Iteration
Removes from the underlying collection the last element returned by the iteration (optional operation). This method can be called only once per call to next.- Specified by:
remove
in interfaceIteration<Statement,QueryEvaluationException>
- Throws:
QueryEvaluationException
-
stream
public Stream<Statement> stream()
Description copied from interface:QueryResult
Convert the result elements to a JavaStream
. Note that the consumer should take care to close the stream (by calling Stream#close() or using try-with-resource) if it is not fully consumed.- Specified by:
stream
in interfaceCloseableIteration<Statement,QueryEvaluationException>
- Specified by:
stream
in interfaceIteration<Statement,QueryEvaluationException>
- Specified by:
stream
in interfaceQueryResult<Statement>
- Returns:
- stream a
Stream
of query result elements.
-
spliterator
public Spliterator<Statement> spliterator()
- Specified by:
spliterator
in interfaceIterable<Statement>
-
-