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

All Implemented Interfaces:
    LongListIterator

Adapts a Number -valued ListIterator to the LongListIterator interface.

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

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