Uses of Interface
org.eclipse.rdf4j.common.iteration.Iteration
Packages that use Iteration
Package
Description
Package offering various locking scheme implementations.
Interfaces and classes for handling queries and query results.
Implementations of
relevant to query evaluation.
invalid reference
Iteration
The Repository API: the main API for accessing rdf databases and SPARQL endpoints.
Abstract base classes and wrappers for the main Repository API interfaces.
A repository wrapper with convenience functions for handling contexts.
Repository implementation for local RDF databases that implement the SAIL SPI.
A
Repository that serves as a SPARQL endpoint client.RDF Storage And Inference Layer (RDF Sail): a set of interfaces defining an SPI for RDF databases.
Base functionality for Sail implementations that require multi-versioned concurrency control (MVCC).
Abstract base implementation and internal helper classes for Sail implementations.
MemoryStore-specific implementations of the core RDF model objects.
Core functions required for SPIN.
-
Uses of Iteration in org.eclipse.rdf4j.common.concurrent.locks
Classes in org.eclipse.rdf4j.common.concurrent.locks that implement IterationConstructors in org.eclipse.rdf4j.common.concurrent.locks with parameters of type IterationModifierConstructorDescriptionLockingIteration(Lock lock, Iteration<? extends E, X> iter) Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of Iteration in org.eclipse.rdf4j.common.concurrent.locks.diagnostics
Classes in org.eclipse.rdf4j.common.concurrent.locks.diagnostics that implement Iteration -
Uses of Iteration in org.eclipse.rdf4j.common.iteration
Subinterfaces of Iteration in org.eclipse.rdf4j.common.iterationModifier and TypeInterfaceDescriptioninterfaceCloseableIteration<E, X extends Exception>Deprecated.Classes in org.eclipse.rdf4j.common.iteration that implement IterationModifier and TypeClassDescriptionclassAbstractCloseableIteration<E, X extends Exception>Deprecated.classCloseableIteratorIteration<E, X extends Exception>Deprecated.classConvertingIteration<S, T, X extends Exception>Deprecated.classDelayedIteration<E, X extends Exception>Deprecated.classDistinctIteration<E, X extends Exception>Deprecated.classDualUnionIteration<E, X extends Exception>Deprecated.final classEmptyIteration<E, X extends Exception>Deprecated.classExceptionConvertingIteration<E, X extends Exception>Deprecated.classFilterIteration<E, X extends Exception>Deprecated.classIntersectIteration<E, X extends Exception>Deprecated.classIterationWrapper<E, X extends Exception>Deprecated.classIteratorIteration<E, X extends Exception>Deprecated.classLimitIteration<E, X extends Exception>Deprecated.classLookAheadIteration<E, X extends Exception>Deprecated.classMinusIteration<E, X extends Exception>Deprecated.classOffsetIteration<E, X extends Exception>Deprecated.classQueueIteration<E, T extends Exception>Deprecated.classReducedIteration<E, X extends Exception>Deprecated.classSilentIteration<T, E extends Exception>Deprecated.classSingletonIteration<E, X extends Exception>Deprecated.classTimeLimitIteration<E, X extends Exception>Deprecated.classUnionIteration<E, X extends Exception>Deprecated.Fields in org.eclipse.rdf4j.common.iteration declared as IterationModifier and TypeFieldDescriptionIntersectIteration.arg2Deprecated.UnionIteration.currentIterDeprecated.ConvertingIteration.iterDeprecated.The source type iteration.DelayedIteration.iterDeprecated.ExceptionConvertingIteration.iterDeprecated.The underlying Iteration.IterationSpliterator.iterationDeprecated.MinusIteration.rightArgDeprecated.IterationWrapper.wrappedIterDeprecated.This will be changed to private, possibly with an accessor in future.Fields in org.eclipse.rdf4j.common.iteration with type parameters of type IterationMethods in org.eclipse.rdf4j.common.iteration that return IterationModifier and TypeMethodDescriptionDelayedIteration.createIteration()Deprecated.Creates the iteration that should be iterated over.Methods in org.eclipse.rdf4j.common.iteration with parameters of type IterationModifier and TypeMethodDescriptionstatic <E, X extends Exception, C extends Collection<E>>
CDeprecated, for removal: This API element is subject to removal in a future version.Deprecated.Deprecated, for removal: This API element is subject to removal in a future version.Deprecated, for removal: This API element is subject to removal in a future version.Deprecated, for removal: This API element is subject to removal in a future version.static <X extends Exception>
voidIterations.closeCloseable(Iteration<?, X> iteration) Deprecated, for removal: This API element is subject to removal in a future version.static <T> Stream<T> Deprecated, for removal: This API element is subject to removal in a future version.Deprecated, for removal: This API element is subject to removal in a future version.static <X extends Exception>
voidIterations.toString(Iteration<?, X> iteration, String separator, StringBuilder sb) Deprecated, for removal: This API element is subject to removal in a future version.Constructors in org.eclipse.rdf4j.common.iteration with parameters of type IterationModifierConstructorDescriptionprotectedConvertingIteration(Iteration<? extends S, ? extends X> iter) Deprecated.Creates a new ConvertingIteration that operates on the supplied source type iteration.DistinctIteration(Iteration<? extends E, ? extends X> iter) Deprecated.Creates a new DistinctIterator.Deprecated.protectedExceptionConvertingIteration(Iteration<? extends E, ? extends Exception> iter) Deprecated.Creates a new ExceptionConvertingIteration that operates on the supplied iteration.protectedFilterIteration(Iteration<? extends E, ? extends X> iter) Deprecated.IntersectIteration(Iteration<? extends E, ? extends X> arg1, Iteration<? extends E, ? extends X> arg2) Deprecated.Creates a new IntersectIteration that returns the intersection of the results of two Iterations.IntersectIteration(Iteration<? extends E, ? extends X> arg1, Iteration<? extends E, ? extends X> arg2, boolean distinct) Deprecated.Creates a new IntersectIteration that returns the intersection of the results of two Iterations.IntersectIteration(Iteration<? extends E, ? extends X> arg1, Iteration<? extends E, ? extends X> arg2, boolean distinct, Supplier<Set<E>> setMaker) Deprecated.Creates a new IntersectIteration that returns the intersection of the results of two Iterations.IntersectIteration(Iteration<? extends E, ? extends X> arg1, Iteration<? extends E, ? extends X> arg2, Supplier<Set<E>> setMaker) Deprecated.IterationSpliterator(Iteration<T, ? extends Exception> iteration) Deprecated.Creates aSpliteratorimplementation that wraps the suppliedIteration.protectedIterationWrapper(Iteration<? extends E, ? extends X> iter) Deprecated.Creates a new IterationWrapper that operates on the supplied Iteration.LimitIteration(Iteration<? extends E, X> iter, long limit) Deprecated.Creates a new LimitIteration.Deprecated.Creates a new MinusIteration that returns the results of the left argument minus the results of the right argument.MinusIteration(Iteration<? extends E, X> leftArg, Iteration<? extends E, X> rightArg, boolean distinct) Deprecated.Creates a new MinusIteration that returns the results of the left argument minus the results of the right argument.MinusIteration(Iteration<? extends E, X> leftArg, Iteration<? extends E, X> rightArg, boolean distinct, Supplier<Set<E>> setMaker) Deprecated.Creates a new MinusIteration that returns the results of the left argument minus the results of the right argument.OffsetIteration(Iteration<? extends E, X> iter, long offset) Deprecated.Creates a new OffsetIteration.ReducedIteration(Iteration<? extends E, ? extends X> delegate) Deprecated.protectedTimeLimitIteration(Iteration<? extends E, ? extends X> iter, long timeLimit) Deprecated.UnionIteration(Iteration<? extends E, X>... args) Deprecated.Creates a new UnionIteration that returns the bag union of the results of a number of Iterations.Constructor parameters in org.eclipse.rdf4j.common.iteration with type arguments of type IterationModifierConstructorDescriptionUnionIteration(Iterable<? extends Iteration<? extends E, X>> args) Deprecated.Creates a new UnionIteration that returns the bag union of the results of a number of Iterations. -
Uses of Iteration in org.eclipse.rdf4j.common.iterator
Constructors in org.eclipse.rdf4j.common.iterator with parameters of type IterationModifierConstructorDescriptionCloseableIterationIterator(Iteration<? extends E, ? extends RuntimeException> iteration) Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of Iteration in org.eclipse.rdf4j.query
Subinterfaces of Iteration in org.eclipse.rdf4j.queryModifier and TypeInterfaceDescriptioninterfaceA representation of a query result as a sequence ofStatementobjects.interfaceQueryResult<T>Super type of all query result types (TupleQueryResult, GraphQueryResult, etc.).interfaceA representation of a variable-binding query result as a sequence ofBindingSetobjects.Classes in org.eclipse.rdf4j.query that implement IterationModifier and TypeClassDescriptionprivate static classprivate static classprivate static class -
Uses of Iteration in org.eclipse.rdf4j.query.algebra.evaluation
Classes in org.eclipse.rdf4j.query.algebra.evaluation that implement IterationModifier and TypeClassDescriptionstatic classDeprecated, for removal: This API element is subject to removal in a future version. -
Uses of Iteration in org.eclipse.rdf4j.query.algebra.evaluation.federation
Classes in org.eclipse.rdf4j.query.algebra.evaluation.federation that implement IterationModifier and TypeClassDescriptionclassDeprecated.UseJoinExecutorBaseclassDeprecated.classDeprecated, for removal: This API element is subject to removal in a future version.since 2.3 useServiceJoinConversionIterationclassIterator for efficient SERVICE evaluation (vectored). -
Uses of Iteration in org.eclipse.rdf4j.query.algebra.evaluation.impl
Classes in org.eclipse.rdf4j.query.algebra.evaluation.impl that implement IterationModifier and TypeClassDescriptionprivate static classThis class wraps an iterator and increments the "resultSizeActual" of the query model node that the iterator represents.private static classThis class wraps an iterator and tracks the time used to execute next() and hasNext() -
Uses of Iteration in org.eclipse.rdf4j.query.algebra.evaluation.impl.evaluationsteps
Classes in org.eclipse.rdf4j.query.algebra.evaluation.impl.evaluationsteps that implement IterationModifier and TypeClassDescriptionprivate static final classConverts statements into the required bindingsets.private static final class -
Uses of Iteration in org.eclipse.rdf4j.query.algebra.evaluation.iterator
Classes in org.eclipse.rdf4j.query.algebra.evaluation.iterator that implement IterationModifier and TypeClassDescriptionclassclassDeprecated.replaced by HashJoinIterationclassCollectionIteration<E, X extends Exception>Deprecated.since 2.3 useCollectionIterationclassDeprecated.classIteration which forms the cross product of a list of materialized input bindings with each result obtained from the inner iteration.classUtility class that removes code duplication and makes a precompiled QueryEvaluationStep available as an iteration that may be created and used later.classDeprecated.classDeprecated.classDeprecated.classclassGeneric hash join implementation suitable for use by Sail implementations.classInterleaved join iterator.classclassclassDeprecated.classclassDeprecated.classMakes aQueryContextavailable during iteration.classDeprecated.UseSilentIterationinstead.classSPARQLMinusIteration<X extends Exception>Deprecated.classFields in org.eclipse.rdf4j.query.algebra.evaluation.iterator declared as IterationModifier and TypeFieldDescriptionprivate final Iteration<BindingSet, X> SPARQLMinusIteration.rightArgDeprecated.private final Iteration<BindingSet, QueryEvaluationException> DescribeIteration.sourceIterDeprecated.Methods in org.eclipse.rdf4j.query.algebra.evaluation.iterator that return IterationModifier and TypeMethodDescriptionprotected Iteration<BindingSet, QueryEvaluationException> OrderIterator.createIteration()Deprecated.protected Iteration<BindingSet, X> SPARQLMinusIteration.getRightArg()Deprecated.Methods in org.eclipse.rdf4j.query.algebra.evaluation.iterator with parameters of type IterationModifier and TypeMethodDescriptionprotected Set<BindingSet> SPARQLMinusIteration.makeSet(Iteration<BindingSet, X> rightArg) Deprecated.Constructors in org.eclipse.rdf4j.query.algebra.evaluation.iterator with parameters of type IterationModifierConstructorDescriptionDescribeIteration(Iteration<BindingSet, QueryEvaluationException> sourceIter, EvaluationStrategy strategy, Set<String> describeExprNames, BindingSet parentBindings) Deprecated.SPARQLMinusIteration(Iteration<BindingSet, X> leftArg, Iteration<BindingSet, X> rightArg) Deprecated.Creates a new MinusIteration that returns the results of the left argument minus the results of the right argument.SPARQLMinusIteration(Iteration<BindingSet, X> leftArg, Iteration<BindingSet, X> rightArg, boolean distinct) Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of Iteration in org.eclipse.rdf4j.query.algebra.evaluation.limited.iterator
Classes in org.eclipse.rdf4j.query.algebra.evaluation.limited.iterator that implement IterationMethods in org.eclipse.rdf4j.query.algebra.evaluation.limited.iterator with parameters of type IterationModifier and TypeMethodDescriptionstatic Set<BindingSet> LimitedSizeIteratorUtil.addAll(Iteration<? extends BindingSet, ? extends QueryEvaluationException> arg2, Set<BindingSet> includeSet, AtomicLong used, long maxSize) Deprecated, for removal: This API element is subject to removal in a future version.Constructors in org.eclipse.rdf4j.query.algebra.evaluation.limited.iterator with parameters of type IterationModifierConstructorDescriptionLimitedSizeDistinctIteration(Iteration<? extends BindingSet, ? extends QueryEvaluationException> iter, AtomicLong used, long maxSize) Deprecated. -
Uses of Iteration in org.eclipse.rdf4j.query.algebra.evaluation.util
Methods in org.eclipse.rdf4j.query.algebra.evaluation.util that return IterationModifier and TypeMethodDescriptionstatic Iteration<Value, QueryEvaluationException> TripleSources.list(Resource subj, TripleSource store) Deprecated, for removal: This API element is subject to removal in a future version.static Iteration<Resource, QueryEvaluationException> TripleSources.listResources(Resource subj, TripleSource store) Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of Iteration in org.eclipse.rdf4j.query.impl
Classes in org.eclipse.rdf4j.query.impl that implement IterationModifier and TypeClassDescriptionprotected classDeprecated.classDeprecated.classDeprecated.since 2.0.classDeprecated.classDeprecated.classAn implementation of theTupleQueryResultinterface that stores the complete query result in memory.classQueueCursor<E>Makes working with a queue easier by adding the methodsQueueIteration.done()andQueueIteration.toss(Exception)and automatically converting the exception into a QueryEvaluationException with an appropriate stack trace.classDeprecated.UseIteratingTupleQueryResultinstead.Constructors in org.eclipse.rdf4j.query.impl with parameters of type IterationModifierConstructorDescription<E extends Exception>MutableTupleQueryResult(Collection<String> bindingNames, Iteration<? extends BindingSet, E> bindingSetIter) Deprecated, for removal: This API element is subject to removal in a future version.QueryInterruptIteration(Iteration<? extends BindingSet, ? extends QueryEvaluationException> iter, long timeLimit) Deprecated. -
Uses of Iteration in org.eclipse.rdf4j.query.parser.impl
Classes in org.eclipse.rdf4j.query.parser.impl that implement IterationModifier and TypeClassDescriptionprotected classDeprecated.Constructors in org.eclipse.rdf4j.query.parser.impl with parameters of type IterationModifierConstructorDescriptionQueryInterruptIteration(Iteration<? extends BindingSet, ? extends QueryEvaluationException> iter, long timeLimit) Deprecated. -
Uses of Iteration in org.eclipse.rdf4j.query.resultio.helpers
Classes in org.eclipse.rdf4j.query.resultio.helpers that implement Iteration -
Uses of Iteration in org.eclipse.rdf4j.repository
Classes in org.eclipse.rdf4j.repository that implement IterationModifier and TypeClassDescriptionclassMethods in org.eclipse.rdf4j.repository with parameters of type Iteration -
Uses of Iteration in org.eclipse.rdf4j.repository.base
Methods in org.eclipse.rdf4j.repository.base with parameters of type IterationModifier and TypeMethodDescription<E extends Exception>
voidAbstractRepositoryConnection.add(Iteration<? extends Statement, E> statements, Resource... contexts) <E extends Exception>
voidRepositoryConnectionWrapper.add(Iteration<? extends Statement, E> statementIter, Resource... contexts) <E extends Exception>
voidAbstractRepositoryConnection.remove(Iteration<? extends Statement, E> statements, Resource... contexts) <E extends Exception>
voidRepositoryConnectionWrapper.remove(Iteration<? extends Statement, E> statementIter, Resource... contexts) -
Uses of Iteration in org.eclipse.rdf4j.repository.contextaware
Methods in org.eclipse.rdf4j.repository.contextaware with parameters of type IterationModifier and TypeMethodDescription<E extends Exception>
void<E extends Exception>
voidContextAwareConnection.remove(Iteration<? extends Statement, E> statementIter, Resource... contexts) Removes the supplied statements from a specific context in this repository, ignoring any context information carried by the statements themselves. -
Uses of Iteration in org.eclipse.rdf4j.repository.sail
Classes in org.eclipse.rdf4j.repository.sail that implement Iteration -
Uses of Iteration in org.eclipse.rdf4j.repository.sparql
Methods in org.eclipse.rdf4j.repository.sparql that return IterationModifier and TypeMethodDescriptionprotected Iteration<Statement, QueryEvaluationException> SPARQLConnection.toStatementIteration(TupleQueryResult iter, Resource subj, IRI pred, Value obj) Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of Iteration in org.eclipse.rdf4j.repository.sparql.federation
Classes in org.eclipse.rdf4j.repository.sparql.federation that implement IterationModifier and TypeClassDescriptionclassCollectionIteration<E, X extends Exception>An iteration to access a materializedCollectionof BindingSets.classBase class for any join parallel join executor.private classA convenience iteration for SERVICE expression which evaluates intermediate results in batches and manages all results.private static classWrapper iteration which closes aRepositoryConnectionuponRepositoryFederatedService.CloseConnectionIteration.close()private classHelper iteration to evaluate a block ofBindingSets using the simpleRepositoryFederatedService.select(Service, Set, BindingSet, String)routine.classDeprecated.classIteration which forms the cross product of a list of materialized input bindings with each result obtained from the inner iteration. -
Uses of Iteration in org.eclipse.rdf4j.repository.sparql.query
Classes in org.eclipse.rdf4j.repository.sparql.query that implement IterationModifier and TypeClassDescriptionclassAdds more bindings to each of the results. -
Uses of Iteration in org.eclipse.rdf4j.sail
Classes in org.eclipse.rdf4j.sail that implement Iteration -
Uses of Iteration in org.eclipse.rdf4j.sail.base
Classes in org.eclipse.rdf4j.sail.base that implement IterationModifier and TypeClassDescriptionclassAn Iteration that takes two source.(package private) classSailClosingIteration<T, X extends Exception>AnIterationthat holds on to aSailClosableuntil the Iteration is closed. -
Uses of Iteration in org.eclipse.rdf4j.sail.helpers
Classes in org.eclipse.rdf4j.sail.helpers that implement IterationModifier and TypeClassDescription(package private) final classCleanerIteration<E, X extends Exception>(package private) classSailBaseIteration<T, E extends Exception>An iteration extension that keeps a reference to the AbstractSailConnection from which it originates and signals when it is closed.(package private) classTupleExprWrapperIteration<T extends BindingSet, X extends Exception>This iteration is used to debug issues with the TupleExpr that was used to generate the wrapped iteration. -
Uses of Iteration in org.eclipse.rdf4j.sail.memory.model
Classes in org.eclipse.rdf4j.sail.memory.model that implement IterationModifier and TypeClassDescriptionclassA StatementIterator that can iterate over a list of Statement objects.private static classclassMemTripleIterator<X extends Exception>An Iteration that can iterate over a list ofTripleobjects. -
Uses of Iteration in org.eclipse.rdf4j.sail.shacl.ast.planNodes
Classes in org.eclipse.rdf4j.sail.shacl.ast.planNodes that implement IterationModifier and TypeClassDescriptionclass(package private) classprivate static class(package private) static class -
Uses of Iteration in org.eclipse.rdf4j.sail.shacl.wrapper.data
Classes in org.eclipse.rdf4j.sail.shacl.wrapper.data that implement Iteration -
Uses of Iteration in org.eclipse.rdf4j.spin.function
Classes in org.eclipse.rdf4j.spin.function that implement IterationModifier and TypeClassDescription(package private) static class(package private) static class
Iterationand instead declare the same interface methods directly.