Uses of Interface
org.eclipse.rdf4j.common.iteration.CloseableIteration
-
Packages that use CloseableIteration Package Description org.eclipse.rdf4j.common.iteration org.eclipse.rdf4j.common.iterator -
-
Uses of CloseableIteration in org.eclipse.rdf4j.common.iteration
Classes in org.eclipse.rdf4j.common.iteration that implement CloseableIteration Modifier and Type Class Description classAbstractCloseableIteration<E>Deprecated.classCloseableIteratorIteration<E>Deprecated.classConvertingIteration<S,T>Deprecated.classDelayedIteration<E>Deprecated.classDistinctIteration<E>Deprecated.classDualUnionIteration<E>Deprecated.classEmptyIteration<E>Deprecated.classExceptionConvertingIteration<E,X extends RuntimeException>Deprecated.classFilterIteration<E>Deprecated.classIntersectIteration<E>Deprecated.classIterationWrapper<E>Deprecated.classIteratorIteration<E>Deprecated.classLimitIteration<E>Deprecated.classLookAheadIteration<E>Deprecated.classMinusIteration<E>Deprecated.classOffsetIteration<E>Deprecated.classQueueIteration<E,T extends RuntimeException>Deprecated.classReducedIteration<E>Deprecated.classSilentIteration<T>Deprecated.classSingletonIteration<E>Deprecated.classTimeLimitIteration<E>Deprecated.classUnionIteration<E>Deprecated.Fields in org.eclipse.rdf4j.common.iteration declared as CloseableIteration Modifier and Type Field Description protected CloseableIteration<? extends E>IntersectIteration. arg2Deprecated.protected CloseableIteration<? extends E>IterationWrapper. wrappedIterDeprecated.This will be changed to private, possibly with an accessor in future.Methods in org.eclipse.rdf4j.common.iteration that return CloseableIteration Modifier and Type Method Description protected abstract CloseableIteration<? extends E>DelayedIteration. createIteration()Deprecated.Creates the iteration that should be iterated over.static <E,X extends Exception>
CloseableIteration<E>DualUnionIteration. getInstance(CloseableIteration<E> leftIteration, CloseableIteration<E> rightIteration)Deprecated.static <E,X extends Exception>
CloseableIteration<? extends E>DualUnionIteration. getWildcardInstance(CloseableIteration<? extends E> leftIteration, CloseableIteration<? extends E> rightIteration)Deprecated.Methods in org.eclipse.rdf4j.common.iteration with parameters of type CloseableIteration Modifier and Type Method Description static <E,X extends Exception,C extends Collection<E>>
CIterations. addAll(CloseableIteration<? extends E> iter, C collection)Deprecated.Adds all elements from the suppliedCloseableIterationto the specified collection then closes theCloseableIteration.Set<E>IntersectIteration. addSecondSet(CloseableIteration<? extends E> arg2, Set<E> set)Deprecated.static <E,X extends Exception>
List<E>Iterations. asList(CloseableIteration<? extends E> iter)Deprecated.Get a List containing all elements obtained from the specified iteration.static <E,X extends Exception>
Set<E>Iterations. asSet(CloseableIteration<? extends E> iter)Deprecated.Get a Set containing all elements obtained from the specified iteration.static <E,X extends Exception>
Set<E>Iterations. asSet(CloseableIteration<? extends E> iteration, Supplier<Set<E>> setMaker)Deprecated.Get a Set containing all elements obtained from the specified iteration.static <E,X extends Exception>
CloseableIteration<E>DualUnionIteration. getInstance(CloseableIteration<E> leftIteration, CloseableIteration<E> rightIteration)Deprecated.static <E,X extends Exception>
CloseableIteration<? extends E>DualUnionIteration. getWildcardInstance(CloseableIteration<? extends E> leftIteration, CloseableIteration<? extends E> rightIteration)Deprecated.static <T> Stream<T>Iterations. stream(CloseableIteration<T> iteration)Deprecated.Get a sequentialStreamwith the suppliedCloseableIterationas its source.static <X extends Exception>
StringIterations. toString(CloseableIteration<?> iteration, String separator)Deprecated.Converts aCloseableIterationto a string by concatenating all the string representations of objects in the iteration, divided by a separator.static <X extends Exception>
voidIterations. toString(CloseableIteration<?> iteration, String separator, StringBuilder sb)Deprecated.Converts aCloseableIterationto a string by concatenating all the string representations of objects in the iteration, divided by a separator.Constructors in org.eclipse.rdf4j.common.iteration with parameters of type CloseableIteration Constructor Description ConvertingIteration(CloseableIteration<? extends S> iter)Deprecated.Creates a new ConvertingIteration that operates on the supplied source type iteration.DistinctIteration(CloseableIteration<? extends E> iter)Deprecated.Creates a new DistinctIterator.DistinctIteration(CloseableIteration<? extends E> iter, Supplier<Set<E>> setMaker)Deprecated.ExceptionConvertingIteration(CloseableIteration<? extends E> iter)Deprecated.Creates a new ExceptionConvertingIteration that operates on the supplied iteration.FilterIteration(CloseableIteration<? extends E> iter)Deprecated.IntersectIteration(CloseableIteration<? extends E> arg1, CloseableIteration<? extends E> arg2)Deprecated.Creates a new IntersectIteration that returns the intersection of the results of two Iterations.IntersectIteration(CloseableIteration<? extends E> arg1, CloseableIteration<? extends E> arg2, boolean distinct)Deprecated.Creates a new IntersectIteration that returns the intersection of the results of two Iterations.IntersectIteration(CloseableIteration<? extends E> arg1, CloseableIteration<? extends E> arg2, boolean distinct, Supplier<Set<E>> setMaker)Deprecated.Creates a new IntersectIteration that returns the intersection of the results of two Iterations.IntersectIteration(CloseableIteration<? extends E> arg1, CloseableIteration<? extends E> arg2, Supplier<Set<E>> setMaker)Deprecated.IterationSpliterator(CloseableIteration<T> iteration)Deprecated.Creates aSpliteratorimplementation that wraps the suppliedCloseableIteration.IterationWrapper(CloseableIteration<? extends E> iter)Deprecated.Creates a new IterationWrapper that operates on the supplied Iteration.LimitIteration(CloseableIteration<? extends E> iter, long limit)Deprecated.Creates a new LimitIteration.MinusIteration(CloseableIteration<? extends E> leftArg, CloseableIteration<? extends E> rightArg)Deprecated.Creates a new MinusIteration that returns the results of the left argument minus the results of the right argument.MinusIteration(CloseableIteration<? extends E> leftArg, CloseableIteration<? extends E> rightArg, boolean distinct)Deprecated.Creates a new MinusIteration that returns the results of the left argument minus the results of the right argument.MinusIteration(CloseableIteration<? extends E> leftArg, CloseableIteration<? extends E> 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(CloseableIteration<? extends E> iter, long offset)Deprecated.Creates a new OffsetIteration.ReducedIteration(CloseableIteration<? extends E> delegate)Deprecated.SilentIteration(CloseableIteration<T> iter)Deprecated.TimeLimitIteration(CloseableIteration<? extends E> iter, long timeLimit)Deprecated.UnionIteration(CloseableIteration<? extends E>... 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 CloseableIteration Constructor Description UnionIteration(Iterable<? extends CloseableIteration<? extends E>> args)Deprecated.Creates a new UnionIteration that returns the bag union of the results of a number of Iterations. -
Uses of CloseableIteration in org.eclipse.rdf4j.common.iterator
Constructors in org.eclipse.rdf4j.common.iterator with parameters of type CloseableIteration Constructor Description CloseableIterationIterator(CloseableIteration<? extends E> iteration)
-