home *** CD-ROM | disk | FTP | other *** search
- /*
- File: RBPairEnumeration.java
-
- Originally written by Doug Lea and released into the public domain.
- Thanks for the assistance and support of Sun Microsystems Labs, Agorics
- Inc, Loral, and everyone contributing, testing, and using this code.
-
- History:
- Date Who What
- 24Sep95 dl@cs.oswego.edu Create from collections.java working file
- 13Oct95 dl Changed protection statuses
-
- */
-
- package collections;
-
- import java.util.Enumeration;
- import java.util.NoSuchElementException;
-
- /**
- *
- *
- * Enumerator for paircollections based on RBPairs
- * @author Doug Lea
- * @version 0.93
- *
- * <P> For an introduction to this package see <A HREF="index.html"> Overview </A>.
- **/
- final class RBPairEnumeration extends CEImpl {
- private RBPair cur_;
- private boolean useKeys_;
-
- public RBPairEnumeration(UpdatableCollection c, RBPair t,boolean useKeys) {
- super(c);
- if (t == null)
- cur_ = t;
- else
- cur_ = (RBPair)(t.leftmost());
- useKeys_ = useKeys;
- }
-
- /**
- * Implements java.util.Enumeration.nextElement.
- * @see java.util.Enumeration#nextElement
- **/
- public Object nextElement() {
- decRemaining();
- Object v = (useKeys_)? cur_.key(): cur_.element();
- cur_ = (RBPair)(cur_.successor());
- return v;
- }
-
- }
-
-