public interface TableRow
Modifier and Type | Method and Description |
---|---|
int |
getColumnCount() |
String |
getColumnTitle(int column) |
String[] |
getColumnTitles() |
int |
getColumnType(int column) |
int |
getColumnType(String columnName) |
int[] |
getColumnTypes() |
double |
getDouble(int column) |
double |
getDouble(String columnName) |
float |
getFloat(int column) |
float |
getFloat(String columnName) |
int |
getInt(int column) |
int |
getInt(String columnName) |
long |
getLong(int column) |
long |
getLong(String columnName) |
String |
getString(int column) |
String |
getString(String columnName) |
void |
print() |
void |
setDouble(int column,
double value) |
void |
setDouble(String columnName,
double value) |
void |
setFloat(int column,
float value) |
void |
setFloat(String columnName,
float value) |
void |
setInt(int column,
int value) |
void |
setInt(String columnName,
int value) |
void |
setLong(int column,
long value) |
void |
setLong(String columnName,
long value) |
void |
setString(int column,
String value) |
void |
setString(String columnName,
String value) |
void |
write(PrintWriter writer) |
String getString(int column)
column
- ID number of the column to referencegetInt(int)
,
getFloat(int)
String getString(String columnName)
columnName
- title of the column to referenceint getInt(int column)
column
- ID number of the column to referencegetFloat(int)
,
getString(int)
int getInt(String columnName)
columnName
- title of the column to referencelong getLong(int column)
column
- ID number of the column to referencegetFloat(int)
,
getString(int)
long getLong(String columnName)
columnName
- title of the column to referencefloat getFloat(int column)
column
- ID number of the column to referencegetInt(int)
,
getString(int)
float getFloat(String columnName)
columnName
- title of the column to referencedouble getDouble(int column)
column
- ID number of the column to referencegetInt(int)
,
getString(int)
double getDouble(String columnName)
columnName
- title of the column to referencevoid setString(int column, String value)
column
- ID number of the target columnvalue
- value to assignsetInt(int, int)
,
setFloat(int, float)
void setString(String columnName, String value)
columnName
- title of the target columnvoid setInt(int column, int value)
column
- ID number of the target columnvalue
- value to assignsetFloat(int, float)
,
setString(int, String)
void setInt(String columnName, int value)
columnName
- title of the target columnvoid setLong(int column, long value)
column
- ID number of the target columnvalue
- value to assignsetFloat(int, float)
,
setString(int, String)
void setLong(String columnName, long value)
columnName
- title of the target columnvoid setFloat(int column, float value)
column
- ID number of the target columnvalue
- value to assignsetInt(int, int)
,
setString(int, String)
void setFloat(String columnName, float value)
columnName
- title of the target columnvoid setDouble(int column, double value)
column
- ID number of the target columnvalue
- value to assignsetFloat(int, float)
,
setString(int, String)
void setDouble(String columnName, double value)
columnName
- title of the target columnint getColumnCount()
int getColumnType(String columnName)
columnName
- title of the target columnint getColumnType(int column)
column
- ID number of the target columnint[] getColumnTypes()
String getColumnTitle(int column)
column
- ID number of the target columnString[] getColumnTitles()
void write(PrintWriter writer)
void print()