textbender.g.util
Class ListIterator0<E>

java.lang.Object
  extended by ListIterator0<E>
All Implemented Interfaces:
Iterator<E>, ListIterator<E>

Deprecated.

@Deprecated
public final class ListIterator0<E>
extends Object
implements ListIterator<E>

An empty ListIterator. It does not support add().

Thread safe.


Constructor Summary
ListIterator0()
          Deprecated.  
 
Method Summary
 void add(E o)
          Deprecated.  
 boolean hasNext()
          Deprecated.  
 boolean hasPrevious()
          Deprecated.  
 E next()
          Deprecated.  
 int nextIndex()
          Deprecated.  
 E previous()
          Deprecated.  
 int previousIndex()
          Deprecated.  
 void remove()
          Deprecated.  
 void set(E o)
          Deprecated.  
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ListIterator0

public ListIterator0()
Deprecated. 
Method Detail

add

public void add(E o)
Deprecated. 
Specified by:
add in interface ListIterator<E>

hasNext

public boolean hasNext()
Deprecated. 
Specified by:
hasNext in interface Iterator<E>
Specified by:
hasNext in interface ListIterator<E>

hasPrevious

public boolean hasPrevious()
Deprecated. 
Specified by:
hasPrevious in interface ListIterator<E>

next

public E next()
Deprecated. 
Specified by:
next in interface Iterator<E>
Specified by:
next in interface ListIterator<E>

nextIndex

public int nextIndex()
Deprecated. 
Specified by:
nextIndex in interface ListIterator<E>

previous

public E previous()
Deprecated. 
Specified by:
previous in interface ListIterator<E>

previousIndex

public int previousIndex()
Deprecated. 
Specified by:
previousIndex in interface ListIterator<E>

remove

public void remove()
Deprecated. 
Specified by:
remove in interface Iterator<E>
Specified by:
remove in interface ListIterator<E>

set

public void set(E o)
Deprecated. 
Specified by:
set in interface ListIterator<E>