Class ArcsSet.SubArcsIterator
- java.lang.Object
-
- org.apache.commons.math3.geometry.spherical.oned.ArcsSet.SubArcsIterator
-
- All Implemented Interfaces:
java.util.Iterator<double[]>
- Enclosing class:
- ArcsSet
private class ArcsSet.SubArcsIterator extends java.lang.Object implements java.util.Iterator<double[]>
Local iterator for sub-arcs.
-
-
Constructor Summary
Constructors Constructor Description SubArcsIterator()
Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
double[]
next()
void
remove()
private void
selectPending()
Walk the tree to select the pending sub-arc.
-
-
-
Method Detail
-
selectPending
private void selectPending()
Walk the tree to select the pending sub-arc.
-
hasNext
public boolean hasNext()
- Specified by:
hasNext
in interfacejava.util.Iterator<double[]>
-
next
public double[] next()
- Specified by:
next
in interfacejava.util.Iterator<double[]>
-
remove
public void remove()
- Specified by:
remove
in interfacejava.util.Iterator<double[]>
-
-