public interface IDatapoolRecord
datapool. A datapool
is an ordered collection equivalence classes
which contain an order collection of records. And to complete the
hierarchy, a record is an ordered collection of cells.
Several restrictions exist on records within a datapool:
| Modifier and Type | Method and Description |
|---|---|
IDatapoolCell |
getCell(int cellIndex)
The value for the cell in the current record and
the specified variable is returned.
|
IDatapoolCell |
getCell(java.lang.String variableName)
The value for the cell in the current record and
the specified variable is returned.
|
int |
getCellCount()
The number of cells available in a record.
|
IDatapoolEquivalenceClass |
getEquivalenceClass()
Access to the
equivalenceClass that is the
parent of this record. |
int getCellCount()
IDatapoolCell getCell(int cellIndex)
DatapoolException is thrown if
the name does not match a variable name in the record.cellIndex - The zero based cell index.IDatapoolCell getCell(java.lang.String variableName)
DatapoolException is thrown if the name does not match a variable
name in the record.variableName - The variable name to identify the cell by.IDatapoolEquivalenceClass getEquivalenceClass()
equivalenceClass that is the
parent of this record.equivalenceClass that is the
parent of this record.