Package org.openstreetmap.josm.data.osm
Class QuadBuckets.QuadBucketIterator
- java.lang.Object
-
- org.openstreetmap.josm.data.osm.QuadBuckets.QuadBucketIterator
-
- All Implemented Interfaces:
Iterator<T>
- Enclosing class:
- QuadBuckets<T extends IQuadBucketType>
class QuadBuckets.QuadBucketIterator extends Object implements Iterator<T>
-
-
Field Summary
Fields Modifier and Type Field Description private int
contentIndex
private QuadBuckets.QBLevel<T>
currentNode
(package private) boolean
fromInvalidBBoxPrimitives
private Iterator<T>
invalidBBoxIterator
(package private) QuadBuckets<T>
qb
-
Constructor Summary
Constructors Constructor Description QuadBucketIterator(QuadBuckets<T> qb)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
T
next()
(package private) QuadBuckets.QBLevel<T>
nextContentNode(QuadBuckets.QBLevel<T> q)
(package private) T
peek()
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
-
-
-
-
Field Detail
-
currentNode
private QuadBuckets.QBLevel<T extends IQuadBucketType> currentNode
-
contentIndex
private int contentIndex
-
invalidBBoxIterator
private final Iterator<T extends IQuadBucketType> invalidBBoxIterator
-
fromInvalidBBoxPrimitives
boolean fromInvalidBBoxPrimitives
-
qb
QuadBuckets<T extends IQuadBucketType> qb
-
-
Constructor Detail
-
QuadBucketIterator
QuadBucketIterator(QuadBuckets<T> qb)
-
-
Method Detail
-
nextContentNode
final QuadBuckets.QBLevel<T> nextContentNode(QuadBuckets.QBLevel<T> q)
-
hasNext
public boolean hasNext()
- Specified by:
hasNext
in interfaceIterator<T extends IQuadBucketType>
-
remove
public void remove()
- Specified by:
remove
in interfaceIterator<T extends IQuadBucketType>
-
-