Module openj9.traceformat
Package com.ibm.jvm.trace
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 SummaryConstructorsModifierConstructorDescriptionprotectedTracePointGlobalChronologicalIterator(TraceFormat formatter) 
- 
Method SummaryMethods declared in class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods declared in interface java.util.IteratorforEachRemaining, remove
- 
Constructor Details- 
TracePointGlobalChronologicalIterator
 
- 
- 
Method Details- 
hasNextpublic 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 interface- Iterator<Type extends TracePoint>
- Returns:
- trueif the iteration has more elements
 
- 
nextDescription copied from interface:java.util.IteratorReturns the next element in the iteration.- Specified by:
- nextin interface- Iterator<Type extends TracePoint>
- Returns:
- the next element in the iteration
 
 
-