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

All Implemented Interfaces:
    ShortListIterator

Adapts a Number -valued ListIterator to the ShortListIterator interface.

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

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