Uses of Interface
edu.rice.comp211.laundry.iterator.IteratorI

Packages that use IteratorI
edu.rice.comp211.laundry.iterator   
edu.rice.comp211.laundry.list   
 

Uses of IteratorI in edu.rice.comp211.laundry.iterator
 

Subinterfaces of IteratorI in edu.rice.comp211.laundry.iterator
 interface BiIteratorI<T>
          An iterator that traverses a collection of objects of type T in either direction possibly modifying it.
 

Uses of IteratorI in edu.rice.comp211.laundry.list
 

Classes in edu.rice.comp211.laundry.list that implement IteratorI
private  class BiList.BiIterator
          A class used to generate iterators for this list.
 

Methods in edu.rice.comp211.laundry.list that return IteratorI
 IteratorI<T> ListI.newIterator()
          Factory method that instantiates a new iterator over this list.