Java org.apache.commons.collections IteratorUtils fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.collections IteratorUtils fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.collections IteratorUtils.

The text is from its open source code.

Field

ResettableIteratorEMPTY_ITERATOR
An iterator over no elements.
ResettableListIteratorEMPTY_LIST_ITERATOR
A list iterator over no elements.

Method

ResettableIteratorarrayIterator(Object[] array)
Gets an iterator over an object array.
ResettableIteratorarrayIterator(Object array)
Gets an iterator over an object or primitive array.
EnumerationasEnumeration(Iterator iterator)
Gets an enumeration that wraps an iterator.
IteratorasIterator(Enumeration enumeration)
Gets an iterator that provides an iterator view of the given enumeration.
IteratorchainedIterator(Iterator iterator1, Iterator iterator2)
Gets an iterator that iterates through two Iterator s one after another.
IteratorchainedIterator(Iterator[] iterators)
Gets an iterator that iterates through an array of Iterator s one after another.
IteratorchainedIterator(Collection iterators)
Gets an iterator that iterates through a collections of Iterator s one after another.
IteratorcollatedIterator(Comparator comparator, Iterator[] iterators)
Gets an iterator that provides an ordered iteration over the elements contained in an array of Iterator s.
IteratorcollatedIterator(Comparator comparator, Collection iterators)
Gets an iterator that provides an ordered iteration over the elements contained in a collection of Iterator s.
ResettableIteratoremptyIterator()
Gets an empty iterator.
ResettableListIteratoremptyListIterator()
Gets an empty list iterator.
IteratorfilteredIterator(Iterator iterator, Predicate predicate)
Gets an iterator that filters another iterator.
ListIteratorfilteredListIterator(ListIterator listIterator, Predicate predicate)
Gets a list iterator that filters another list iterator.
IteratorgetIterator(Object obj)
Gets a suitable Iterator for the given object.
ResettableIteratorsingletonIterator(Object object)
Gets a singleton iterator.
Object[]toArray(Iterator iterator, Class arrayClass)
Gets an array based on an iterator.
Object[]toArray(Iterator iterator)
Gets an array based on an iterator.
ListtoList(Iterator iterator)
Gets a list based on an iterator.
ListtoList(Iterator iterator, int estimatedSize)
Gets a list based on an iterator.
ListIteratortoListIterator(Iterator iterator)
Gets a list iterator based on a simple iterator.
IteratortransformedIterator(Iterator iterator, Transformer transform)
Gets an iterator that transforms the elements of another iterator.
IteratorunmodifiableIterator(Iterator iterator)
Gets an immutable version of an Iterator .