java.util
Class TreeMap.Iterator

java.lang.Object
  |
  +--java.util.TreeMap.Iterator

private class TreeMap.Iterator
extends Object
implements Iterator

TreeMap Iterator.


Field Summary
private  int expectedModCount
           
private  TreeMap.Entry firstExcluded
           
private  TreeMap.Entry lastReturned
           
private  TreeMap.Entry next
           
private  int type
           
 
Constructor Summary
(package private) TreeMap.Iterator(int type)
           
(package private) TreeMap.Iterator(TreeMap.Entry first, TreeMap.Entry firstExcluded)
           
 
Method Summary
 boolean hasNext()
           
 Object next()
           
 void remove()
           
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

type

private int type

expectedModCount

private int expectedModCount

lastReturned

private TreeMap.Entry lastReturned

next

private TreeMap.Entry next

firstExcluded

private TreeMap.Entry firstExcluded
Constructor Detail

TreeMap.Iterator

TreeMap.Iterator(int type)

TreeMap.Iterator

TreeMap.Iterator(TreeMap.Entry first,
                 TreeMap.Entry firstExcluded)
Method Detail

hasNext

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

next

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

remove

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