Class TracePointGlobalChronologicalIterator<Type extends TracePoint>
java.lang.Object
com.ibm.jvm.trace.TracePointGlobalChronologicalIterator<Type>
- All Implemented Interfaces:
 Iterator
public class TracePointGlobalChronologicalIterator<Type extends TracePoint>
extends Object
implements Iterator
This is a Cursor that thinks it's an Iterator really.
- 
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedTracePointGlobalChronologicalIterator(TraceFormat formatter)  - 
Method Summary
Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods declared in interface Iterator
forEachRemaining, remove 
- 
Constructor Details
- 
TracePointGlobalChronologicalIterator
 
 - 
 - 
Method Details
- 
hasNext
public boolean hasNext()Description copied from interface:java.util.IteratorReturnstrueif the iteration has more elements. (In other words, returnstrueifIterator.next()would return an element rather than throwing an exception.)- Specified by:
 hasNextin interfaceIterator<Type extends TracePoint>- Returns:
 trueif the iteration has more elements
 - 
next
Description copied from interface:java.util.IteratorReturns the next element in the iteration.- Specified by:
 nextin interfaceIterator<Type extends TracePoint>- Returns:
 - the next element in the iteration
 
 
 -