public class ValueTables
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
static ValueTables |
objValueTables
This is the object of the class ValueTable.
|
| Modifier and Type | Method and Description |
|---|---|
void |
addUserDefinedTable(int iUserTableNo,
ISingleCollection<java.lang.String> objValueCollection)
This method adds UserDefinedTable along with its value collection.
|
static ValueTables |
createInstance()
The Static method used to create the object of class ValueTables
only once i.e makes it singleton Class.
|
java.lang.String[] |
getTableValues(int iTableNo)
The function returns the values of the table for the given table number.
|
int |
isValuePresent(int iTableNo,
java.lang.String strValue)
The method is used to find if the value is present in the table or not.
|
public static ValueTables objValueTables
public static ValueTables createInstance()
public int isValuePresent(int iTableNo,
java.lang.String strValue)
iTableNo - -Table numberstrValue - - String value to be checked in the table.public java.lang.String[] getTableValues(int iTableNo)
iTableNo - -Table numberpublic void addUserDefinedTable(int iUserTableNo,
ISingleCollection<java.lang.String> objValueCollection)
iUserTableNo - user defined table numberobjValueCollection - values inside table.