Interface LogIterator
-
- All Superinterfaces:
Iterator<LogMessage>
- All Known Implementing Classes:
InsideBlockMessageIterator
,LogMessageIterator
public interface LogIterator extends Iterator<LogMessage>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getCurrentIndex()
Returns the index of the message returned by the last call to theIterator.next()
, or -1 if no calls were made yet.-
Methods inherited from interface java.util.Iterator
forEachRemaining, hasNext, next, remove
-
-
-
-
Method Detail
-
getCurrentIndex
int getCurrentIndex()
Returns the index of the message returned by the last call to theIterator.next()
, or -1 if no calls were made yet.
-
-