Package com.uppaal.model.core2
Class LogIterator
- java.lang.Object
-
- com.uppaal.model.core2.LogIterator
-
- All Implemented Interfaces:
Iterator<Point2D.Double>
public class LogIterator extends Object implements Iterator<Point2D.Double>
Log10 wrapper for Point2D iterator- Author:
- marius
-
-
Constructor Summary
Constructors Constructor Description LogIterator(Iterator<Point2D.Double> it, boolean logx, boolean logy)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
Point2D.Double
next()
void
remove()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Constructor Detail
-
LogIterator
public LogIterator(Iterator<Point2D.Double> it, boolean logx, boolean logy)
-
-
Method Detail
-
hasNext
public boolean hasNext()
- Specified by:
hasNext
in interfaceIterator<Point2D.Double>
-
next
public Point2D.Double next()
- Specified by:
next
in interfaceIterator<Point2D.Double>
-
remove
public void remove()
- Specified by:
remove
in interfaceIterator<Point2D.Double>
-
-