org.apache.commons.collections.primitives.adapters
Class ByteListIteratorListIterator

java.lang.Object
  |
  +--org.apache.commons.collections.primitives.adapters.ByteListIteratorListIterator
All Implemented Interfaces:
Iterator, ListIterator

public class ByteListIteratorListIterator
extends Object
implements ListIterator

Adapts an ByteListIterator to the ListIterator interface.

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

Since:
Commons Primitives 1.0
Version:
$Revision: 1.3 $ $Date: 2003/10/16 20:49:38 $

Constructor Summary
ByteListIteratorListIterator(org.apache.commons.collections.primitives.ByteListIterator iterator)
          Creates an ListIterator wrapping the specified ByteListIterator.
 
Method Summary
 void add(Object obj)
           
 boolean hasNext()
           
 boolean hasPrevious()
           
 Object next()
           
 int nextIndex()
           
 Object previous()
           
 int previousIndex()
           
 void remove()
           
 void set(Object obj)
           
static ListIterator wrap(org.apache.commons.collections.primitives.ByteListIterator iterator)
          Create a ListIterator wrapping the specified ByteListIterator.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ByteListIteratorListIterator

public ByteListIteratorListIterator(org.apache.commons.collections.primitives.ByteListIterator iterator)
Creates an ListIterator wrapping the specified ByteListIterator.

See Also:
wrap(org.apache.commons.collections.primitives.ByteListIterator)
Method Detail

wrap

public static ListIterator wrap(org.apache.commons.collections.primitives.ByteListIterator iterator)
Create a ListIterator wrapping the specified ByteListIterator. When the given iterator is null, returns null.

Parameters:
iterator - the (possibly null) ByteListIterator to wrap
Returns:
a ListIterator wrapping the given iterator, or null when iterator is null.

nextIndex

public int nextIndex()
Specified by:
nextIndex in interface ListIterator

previousIndex

public int previousIndex()
Specified by:
previousIndex in interface ListIterator

hasNext

public boolean hasNext()
Specified by:
hasNext in interface ListIterator

hasPrevious

public boolean hasPrevious()
Specified by:
hasPrevious in interface ListIterator

next

public Object next()
Specified by:
next in interface ListIterator

previous

public Object previous()
Specified by:
previous in interface ListIterator

add

public void add(Object obj)
Specified by:
add in interface ListIterator

set

public void set(Object obj)
Specified by:
set in interface ListIterator

remove

public void remove()
Specified by:
remove in interface ListIterator


Copyright © 2002-2004 Apache Software Foundation. All Rights Reserved.