Save This Page
Home » commons-collections-3.2.1-src » org.apache.commons » collections » primitives » adapters » [javadoc | source]
org.apache.commons.collections.primitives.adapters
public class: DoubleListIteratorListIterator [javadoc | source]
java.lang.Object
   org.apache.commons.collections.primitives.adapters.DoubleListIteratorListIterator

All Implemented Interfaces:
    ListIterator

Adapts an DoubleListIterator to the ListIterator interface.

This implementation delegates most methods to the provided DoubleListIterator implementation in the "obvious" way.

Constructor:
 public DoubleListIteratorListIterator(DoubleListIterator iterator) 
Method from org.apache.commons.collections.primitives.adapters.DoubleListIteratorListIterator Summary:
add,   hasNext,   hasPrevious,   next,   nextIndex,   previous,   previousIndex,   remove,   set,   wrap
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.commons.collections.primitives.adapters.DoubleListIteratorListIterator Detail:
 public  void add(Object obj) 
 public boolean hasNext() 
 public boolean hasPrevious() 
 public Object next() 
 public int nextIndex() 
 public Object previous() 
 public int previousIndex() 
 public  void remove() 
 public  void set(Object obj) 
 public static ListIterator wrap(DoubleListIterator iterator)