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

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

Introduction

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

The text is from its open source code.

Field

ResettableIteratorEMPTY_ITERATOR
An iterator over no elements.

Method

ResettableIteratorarrayIterator(final E... array)
Gets an iterator over an object array.
ResettableIteratorarrayIterator(final Object array)
Gets an iterator over an object or primitive array.
EnumerationasEnumeration(final Iterator iterator)
Gets an enumeration that wraps an iterator.
IterableasIterable(final Iterator iterator)
Gets an Iterable that wraps an iterator.
IteratorasIterator(final Enumeration enumeration)
Gets an iterator that provides an iterator view of the given enumeration.
IteratorchainedIterator(final Iterator... iterators)
Gets an iterator that iterates through an array of Iterator s one after another.
IteratorchainedIterator(final Collection> iterators)
Gets an iterator that iterates through a collections of Iterator s one after another.
IteratorchainedIterator(final Iterator iterator1, final Iterator iterator2)
Gets an iterator that iterates through two Iterator s one after another.
IteratorfilteredIterator(final Iterator iterator, final Predicate predicate)
Gets an iterator that filters another iterator.
ListIteratorfilteredListIterator(final ListIterator listIterator, final Predicate predicate)
Gets a list iterator that filters another list iterator.
IteratorgetIterator(final Object obj)
Gets a suitable Iterator for the given object.
IteratorobjectGraphIterator(final E root, final Transformer transformer)
Gets an iterator that operates over an object graph.
ResettableIteratorsingletonIterator(final E object)
Gets a singleton iterator.
E[]toArray(final Iterator iterator, final Class arrayClass)
Gets an array based on an iterator.
ListtoList(final Iterator iterator)
Gets a list based on an iterator.
IteratortransformedIterator(final Iterator iterator, final Transformer transform)
Gets an iterator that transforms the elements of another iterator.