public class IteratorEntry<T>
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
int |
count
The overall number of items being iterated.
|
static float |
DEFAULT_POINT_POSITION
The default point position.
|
boolean |
done
The flag indicating that the composition has been done.
|
int |
index
The index of the current item.
|
ru.ispras.testbase.knowledge.iterator.Iterator<T> |
iterator
The iterator itself.
|
int |
point
The point where the composition (nesting, overlapping, etc.) is applied.
|
Constructor and Description |
---|
IteratorEntry(ru.ispras.testbase.knowledge.iterator.Iterator<T> iterator)
Constructs an iterator entry whose composition point is in the middle.
|
IteratorEntry(ru.ispras.testbase.knowledge.iterator.Iterator<T> iterator,
float position)
Constructs an iterator entry.
|
public static final float DEFAULT_POINT_POSITION
public int index
public int point
public int count
public boolean done
public ru.ispras.testbase.knowledge.iterator.Iterator<T> iterator
public IteratorEntry(ru.ispras.testbase.knowledge.iterator.Iterator<T> iterator, float position)
iterator
- the iterator.position
- the relative position of the composition point.public IteratorEntry(ru.ispras.testbase.knowledge.iterator.Iterator<T> iterator)
iterator
- the iterator.