public class DatapoolStore
extends java.lang.Object
| Constructor and Description |
|---|
DatapoolStore()
Creates an internal datapool structure to hold datapool variable/value pairs.
|
DatapoolStore(java.lang.String dpVariableName,
java.lang.Object dpVariableValue)
Creates an internal datapool structrue to hold datapool variable/value pairs.
|
| Modifier and Type | Method and Description |
|---|---|
void |
addDpVariable(java.lang.String dpVariableName,
java.lang.Object dpVariableValue)
Adds a datapool variable/value pair to the structure
|
java.lang.String |
getDpVariableNameAtIndex(int index)
Returns the Variable Name at the Zero based index
|
java.lang.String |
getDpVariableValueAtIndex(int index)
Returns the Variable value at the Zero based index
|
int |
getTotalRecords()
Return the total number of records
|
java.lang.String |
toString()
Return the String representation of the structure
|
public DatapoolStore()
public DatapoolStore(java.lang.String dpVariableName,
java.lang.Object dpVariableValue)
dpVariableName - The datapool variable namedpVariableValue - The datapool variable valuepublic void addDpVariable(java.lang.String dpVariableName,
java.lang.Object dpVariableValue)
dpVariableName - The datapool variable namedpVariableValue - The datapool variable valuepublic java.lang.String getDpVariableNameAtIndex(int index)
index - Zero based indexpublic java.lang.String getDpVariableValueAtIndex(int index)
index - Zero based indexpublic int getTotalRecords()
public java.lang.String toString()
toString in class java.lang.Object