Uses of Interface
org.apache.commons.collections.ResettableIterator

Packages that use ResettableIterator
org.apache.commons.collections This package contains the interfaces and utilities shared across all the subpackages of this component. 
org.apache.commons.collections.iterators This package contains implementations of the Iterator interface. 
 

Uses of ResettableIterator in org.apache.commons.collections
 

Subinterfaces of ResettableIterator in org.apache.commons.collections
 interface ResettableListIterator
          Defines a list iterator that can be reset back to an initial state.
 

Fields in org.apache.commons.collections declared as ResettableIterator
static ResettableIterator IteratorUtils.EMPTY_ITERATOR
          An iterator over no elements
 

Methods in org.apache.commons.collections that return ResettableIterator
static ResettableIterator IteratorUtils.emptyIterator()
          Gets an empty iterator.
static ResettableIterator IteratorUtils.singletonIterator(java.lang.Object object)
          Gets a singleton iterator.
static ResettableIterator IteratorUtils.arrayIterator(java.lang.Object[] array)
          Gets an iterator over an object array.
static ResettableIterator IteratorUtils.arrayIterator(java.lang.Object array)
          Gets an iterator over an object or primitive array.
static ResettableIterator IteratorUtils.arrayIterator(java.lang.Object[] array, int start)
          Gets an iterator over the end part of an object array.
static ResettableIterator IteratorUtils.arrayIterator(java.lang.Object array, int start)
          Gets an iterator over the end part of an object or primitive array.
static ResettableIterator IteratorUtils.arrayIterator(java.lang.Object[] array, int start, int end)
          Gets an iterator over part of an object array.
static ResettableIterator IteratorUtils.arrayIterator(java.lang.Object array, int start, int end)
          Gets an iterator over part of an object or primitive array.
static ResettableIterator IteratorUtils.loopingIterator(java.util.Collection coll)
          Gets an iterator that loops continuously over the supplied collection.
 

Uses of ResettableIterator in org.apache.commons.collections.iterators
 

Classes in org.apache.commons.collections.iterators that implement ResettableIterator
 class ArrayIterator
          Implements an Iterator over any array.
 class ArrayListIterator
          Implements a ListIterator over an array.
 class EntrySetMapIterator
          Implements a MapIterator using a Map entrySet.
 class LoopingIterator
          An Iterator that restarts when it reaches the end.
 class ObjectArrayIterator
          An Iterator over an array of objects.
 class ObjectArrayListIterator
          Implements a ListIterator over an array of objects.
 class SingletonIterator
          SingletonIterator is an Iterator over a single object instance.
 class SingletonListIterator
          SingletonIterator is an ListIterator over a single object instance.
 



Copyright © 2001-2004 Apache Software Foundation. All Rights Reserved.