Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Util.Collections
Class CollectionTestWrapper.TestIterator  view CollectionTestWrapper.TestIterator download CollectionTestWrapper.TestIterator.java

java.lang.Object
  extended byUtil.Collections.CollectionTestWrapper.TestIterator
All Implemented Interfaces:
java.util.Iterator
Enclosing class:
CollectionTestWrapper

public static class CollectionTestWrapper.TestIterator
extends java.lang.Object
implements java.util.Iterator


Field Summary
private  java.util.Collection c1
           
private  java.util.Collection c2
           
private  java.util.Iterator i1
           
private  java.util.Iterator i2
           
private  java.lang.Object lastRet
           
private  boolean removed
           
private  boolean stable
           
 
Constructor Summary
CollectionTestWrapper.TestIterator(java.util.Collection c1, java.util.Collection c2, java.util.Iterator i1, java.util.Iterator i2, boolean stable)
           
 
Method Summary
 boolean hasNext()
          Tests whether there are elements remaining in the collection.
 java.lang.Object next()
          Obtain the next element in the collection.
 void remove()
          Remove from the underlying collection the last element returned by next (optional operation).
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

c1

private final java.util.Collection c1

c2

private final java.util.Collection c2

i1

private final java.util.Iterator i1

i2

private final java.util.Iterator i2

lastRet

private java.lang.Object lastRet

stable

private final boolean stable

removed

private boolean removed
Constructor Detail

CollectionTestWrapper.TestIterator

public CollectionTestWrapper.TestIterator(java.util.Collection c1,
                                          java.util.Collection c2,
                                          java.util.Iterator i1,
                                          java.util.Iterator i2,
                                          boolean stable)
Method Detail

hasNext

public boolean hasNext()
Description copied from interface: java.util.Iterator
Tests whether there are elements remaining in the collection. In other words, calling next() will not throw an exception.

Specified by:
hasNext in interface java.util.Iterator

next

public java.lang.Object next()
Description copied from interface: java.util.Iterator
Obtain the next element in the collection.

Specified by:
next in interface java.util.Iterator

remove

public void remove()
Description copied from interface: java.util.Iterator
Remove from the underlying collection the last element returned by next (optional operation). This method can be called only once after each call to next(). It does not affect what will be returned by subsequent calls to next.

Specified by:
remove in interface java.util.Iterator