|
CoherenceTM v3.3 Copyright© 2000-2007 by Oracle Corporation |
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.tangosol.util.SparseArray.Crawler
protected class SparseArray.Crawler
A red/black tree node iterator. The methods of this local class are not synchronized; the enclosing class is responsible for synchronization.
Field Summary | |
---|---|
protected static int |
ABOVE
|
protected SparseArray.Node |
current
|
protected int |
fromdir
|
protected static int |
LEFT
|
protected SparseArray.Node |
NIL
NIL is the sentinal Node that is used instead of null, simplifying the implementation of the red/black tree. |
protected static int |
RIGHT
|
protected static int |
SITTING
|
Constructor Summary | |
---|---|
protected |
SparseArray.Crawler(SparseArray.Node head)
Crawler constructor. |
protected |
SparseArray.Crawler(SparseArray.Node head,
int fromdir)
Crawler constructor. |
Method Summary | |
---|---|
Object |
clone()
Make a shallow copy of the node crawler. |
long |
getIndex()
Returns the index of the current value, which is the value returned by the most recent call to the next method. |
Object |
getValue()
Returns the current value, which is the same value returned by the most recent call to the next method, or the most recent value passed to setValue if setValue were called after the next method. |
boolean |
hasNext()
Returns true if the iteration has more elements. |
Object |
next()
Returns the next element in the iteration. |
void |
remove()
Removes from the underlying collection the last element returned by the iterator (optional operation). |
Object |
setValue(Object oValue)
Stores a new value at the current value index, returning the value that was replaced. |
String |
toString()
Provide a string representation of this node's value. |
Field Detail |
---|
protected static final int ABOVE
protected static final int LEFT
protected static final int SITTING
protected static final int RIGHT
protected SparseArray.Node current
protected int fromdir
protected final transient SparseArray.Node NIL
Constructor Detail |
---|
protected SparseArray.Crawler(SparseArray.Node head)
protected SparseArray.Crawler(SparseArray.Node head, int fromdir)
Method Detail |
---|
public boolean hasNext()
hasNext
in interface LongArray.Iterator
hasNext
in interface Iterator
public Object next()
next
in interface LongArray.Iterator
next
in interface Iterator
NoSuchElementException
- iteration has no more elementspublic long getIndex()
getIndex
in interface LongArray.Iterator
IllegalStateException
- if the next method has
not yet been called, or the remove method has
already been called after the last call to the
next method.public Object getValue()
getValue
in interface LongArray.Iterator
IllegalStateException
- if the next method has
not yet been called, or the remove method has
already been called after the last call to the
next method.public Object setValue(Object oValue)
setValue
in interface LongArray.Iterator
IllegalStateException
- if the next method has
not yet been called, or the remove method has
already been called after the last call to the
next method.public void remove()
remove
in interface LongArray.Iterator
remove
in interface Iterator
UnsupportedOperationException
- if the remove
operation is not supported by this Iterator
IllegalStateException
- if the next method has
not yet been called, or the remove method has
already been called after the last call to the
next method.public String toString()
public Object clone()
|
CoherenceTM v3.3 Copyright© 2000-2007 by Oracle Corporation |
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |