Package com.complexible.common.rdf.query
Interface BindingSetIterator
-
- All Superinterfaces:
java.lang.AutoCloseable
,CloseableIterator<BindingSet>
,java.util.Iterator<BindingSet>
- All Known Implementing Classes:
IOBindingSetIterator
,TupleQueryResultIterator
public interface BindingSetIterator extends CloseableIterator<BindingSet>
Iteration over a BindingSet elements
- Since:
- 0.4
- Version:
- 6.0
- Author:
- Michael Grove
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.complexible.common.base.CloseableIterator
CloseableIterator.AbstractCloseableIterator<T>, CloseableIterator.DelegatingCloseableIterator<T>, CloseableIterator.EmptyCloseableIterator<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<java.lang.String>
variables()
Return the list of valid keys, eg binding names, returned via this Iteration-
Methods inherited from interface com.complexible.common.base.CloseableIterator
close
-
-
-
-
Method Detail
-
variables
@Nonnull java.util.List<java.lang.String> variables() throws QueryExecutionFailure
Return the list of valid keys, eg binding names, returned via this Iteration- Returns:
- the binding names
- Throws:
QueryExecutionFailure
-
-