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: ListIteratorDoubleListIterator [javadoc | source]
java.lang.Object
   org.apache.commons.collections.primitives.adapters.ListIteratorDoubleListIterator

All Implemented Interfaces:
    DoubleListIterator

Adapts a Number -valued ListIterator to the DoubleListIterator interface.

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

Constructor:
 public ListIteratorDoubleListIterator(ListIterator iterator) 
Method from org.apache.commons.collections.primitives.adapters.ListIteratorDoubleListIterator 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.ListIteratorDoubleListIterator Detail:
 public  void add(double element) 
 public boolean hasNext() 
 public boolean hasPrevious() 
 public double next() 
 public int nextIndex() 
 public double previous() 
 public int previousIndex() 
 public  void remove() 
 public  void set(double element) 
 public static DoubleListIterator wrap(ListIterator iterator)