org.apache.commons.collections.list
Class CursorableLinkedList.SubCursor

java.lang.Object
  extended by org.apache.commons.collections.list.AbstractLinkedList.LinkedListIterator
      extended by org.apache.commons.collections.list.CursorableLinkedList.Cursor
          extended by org.apache.commons.collections.list.CursorableLinkedList.SubCursor
All Implemented Interfaces:
java.util.Iterator, java.util.ListIterator, OrderedIterator
Enclosing class:
CursorableLinkedList

protected static class CursorableLinkedList.SubCursor
extends CursorableLinkedList.Cursor

A cursor for the sublist based on LinkedSubListIterator.

Since:
Commons Collections 3.2

Field Summary
protected  AbstractLinkedList.LinkedSubList sub
          The parent list
 
Fields inherited from class org.apache.commons.collections.list.AbstractLinkedList.LinkedListIterator
current, expectedModCount, next, nextIndex, parent
 
Constructor Summary
protected CursorableLinkedList.SubCursor(AbstractLinkedList.LinkedSubList sub, int index)
          Constructs a new cursor.
 
Method Summary
 void add(java.lang.Object obj)
          Adds an object to the list.
 boolean hasNext()
           
 boolean hasPrevious()
          Checks to see if there is a previous element that can be iterated to.
 int nextIndex()
          Gets the index of the next element to be returned.
 void remove()
          Removes the item last returned by this iterator.
 
Methods inherited from class org.apache.commons.collections.list.CursorableLinkedList.Cursor
checkModCount, close, nodeChanged, nodeInserted, nodeRemoved
 
Methods inherited from class org.apache.commons.collections.list.AbstractLinkedList.LinkedListIterator
getLastNodeReturned, next, previous, previousIndex, set
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

sub

protected final AbstractLinkedList.LinkedSubList sub
The parent list

Constructor Detail

CursorableLinkedList.SubCursor

protected CursorableLinkedList.SubCursor(AbstractLinkedList.LinkedSubList sub,
                                         int index)
Constructs a new cursor.

Parameters:
index - the index to start from
Method Detail

hasNext

public boolean hasNext()
Specified by:
hasNext in interface java.util.Iterator
Specified by:
hasNext in interface java.util.ListIterator
Overrides:
hasNext in class AbstractLinkedList.LinkedListIterator

hasPrevious

public boolean hasPrevious()
Description copied from interface: OrderedIterator
Checks to see if there is a previous element that can be iterated to.

Specified by:
hasPrevious in interface java.util.ListIterator
Specified by:
hasPrevious in interface OrderedIterator
Overrides:
hasPrevious in class AbstractLinkedList.LinkedListIterator
Returns:
true if the iterator has a previous element

nextIndex

public int nextIndex()
Description copied from class: CursorableLinkedList.Cursor
Gets the index of the next element to be returned.

Specified by:
nextIndex in interface java.util.ListIterator
Overrides:
nextIndex in class CursorableLinkedList.Cursor
Returns:
the next index

add

public void add(java.lang.Object obj)
Description copied from class: CursorableLinkedList.Cursor
Adds an object to the list. The object added here will be the new 'previous' in the iterator.

Specified by:
add in interface java.util.ListIterator
Overrides:
add in class CursorableLinkedList.Cursor
Parameters:
obj - the object to add

remove

public void remove()
Description copied from class: CursorableLinkedList.Cursor
Removes the item last returned by this iterator.

There may have been subsequent alterations to the list since you obtained this item, however you can still remove it. You can even remove it if the item is no longer in the main list. However, you can't call this method on the same iterator more than once without calling next() or previous().

Specified by:
remove in interface java.util.Iterator
Specified by:
remove in interface java.util.ListIterator
Overrides:
remove in class CursorableLinkedList.Cursor


Copyright © 2001-2008 The Apache Software Foundation. All Rights Reserved.