public interface IDatapoolIteratorExt
Modifier and Type | Method and Description |
---|---|
boolean |
dpDone()
Returns
true if the current iterator
value is null . |
void |
dpInitialize(IDatapool datapool)
This method acts the same way as
dpInitialize with equivalence class specification
except that default
equivalence class is used. |
void |
dpInitialize(IDatapool datapool,
int equivalenceClassIndex)
Initialize the iterator sequence from the specified datapool object.
|
void |
dpNext()
Increments the iterator associated with an instance of the datapool.
|
void |
dpReset()
Restart the iterator associated with an instance of the datapool.
|
void dpInitialize(IDatapool datapool, int equivalenceClassIndex)
datapool
- The datapool to iterate over.equivalenceClassIndex
- The zero-based index of the equivalence
class that should be iterated over. If this value
is negative then all records in the datapool should be
will be available to the iterator.void dpInitialize(IDatapool datapool)
dpInitialize with equivalence class specification
except that default
equivalence class is used.datapool
- The datapool to iterate over.boolean dpDone()
true
if the current
iterator
value is null
.void dpNext()