java.lang.Object
org.apache.jena.sparql.util.PrintSerializableBase
org.apache.jena.sparql.engine.iterator.QueryIteratorBase
org.apache.jena.sparql.engine.iterator.QueryIteratorWrapper
org.apache.jena.sparql.engine.iterator.QueryIteratorMapped
- All Implemented Interfaces:
Iterator<Binding>,org.apache.jena.atlas.io.Printable,org.apache.jena.atlas.iterator.IteratorCloseable<Binding>,org.apache.jena.atlas.lib.Closeable,QueryIterator,PrintSerializable
A query iterator which allows remapping variables to different names
-
Constructor Summary
ConstructorsConstructorDescriptionQueryIteratorMapped(QueryIterator qIter, Map<Var, Var> varMapping) Creates a new iterator -
Method Summary
Methods inherited from class org.apache.jena.sparql.engine.iterator.QueryIteratorWrapper
output, outputMethods inherited from class org.apache.jena.sparql.engine.iterator.QueryIteratorBase
cancel, close, hasNext, next, nextBinding, removeMethods inherited from class org.apache.jena.sparql.util.PrintSerializableBase
toString, toStringMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Iterator
forEachRemainingMethods inherited from interface org.apache.jena.sparql.util.PrintSerializable
toStringMethods inherited from interface org.apache.jena.sparql.engine.QueryIterator
isJoinIdentity
-
Constructor Details
-
QueryIteratorMapped
Creates a new iteratorIf the
varMappingisnullthen no variable re-mapping will be applied and this will act as a simple wrapper over the underlying wrapper- Parameters:
qIter- Iterator to wrapvarMapping- Variable mapping
-