Uses of Class
org.apache.commons.collections4.iterators.BoundedIterator
Package
Description
Interfaces and utilities shared across all packages.
-
Uses of BoundedIterator in org.apache.commons.collections4
Modifier and TypeMethodDescriptionstatic <E> BoundedIterator<E>
IteratorUtils.boundedIterator
(Iterator<? extends E> iterator, long max) Decorates the specified iterator to return at most the given number of elements.static <E> BoundedIterator<E>
IteratorUtils.boundedIterator
(Iterator<? extends E> iterator, long offset, long max) Decorates the specified iterator to return at most the given number of elements, skipping all elements until the iterator reaches the position atoffset
.