void |
RTXWriter.addRow(RTXRow row) |
|
void |
RTXWriter.addRow(Object[] data) |
|
void |
RTXWriter.addRow(Object[] data,
String key) |
|
protected void |
RTXMetadata.assertColumnIndex(int index) |
|
RTXRow |
RTXRow.copy(RTXMetadata newMetadata) |
|
BigDecimal |
RTXRow.getBigDecimal(int columnIndex) |
Get the value of the specified column as a BigDecimal.
|
BigDecimal |
RTXRow.getBigDecimal(String columnName) |
Get the value of the specified column as a BigDecimal.
|
String |
RTXRow.getCanonicalStringValue(int columnIndex) |
Get the value as in canonical form (as it would be written to a file).
|
String |
RTXRow.getCanonicalStringValue(RTXColumn column) |
Get the value as in canonical form (as it would be written to a file).
|
String |
RTXRow.getCanonicalStringValue(String columnName) |
Get the value as in canonical form (as it would be written to a file).
|
RTXColumn |
RTXMetadata.getColumnByIndex(int columnIndex) |
Get a column by index (0 based).
|
RTXColumn |
RTXMetadata.getColumnByName(String columnName) |
Get a column by name (case-insensitive).
|
int |
RTXMetadata.getColumnIndex(String columnName) |
Get the index of a column.
|
String |
RTXMetadata.getColumnName(int columnIndex) |
Get the name of a column.
|
RTXType |
RTXMetadata.getColumnType(int columnIndex) |
Get the type of a column.
|
RTXType |
RTXMetadata.getColumnType(String columnName) |
Get the type of a column.
|
Object |
RTXRow.getObject(int columnIndex) |
Get the value of the specified column as an appropriate object.
|
Object |
RTXRow.getObject(String columnName) |
Get the value of the specified column as an appropriate object.
|
String |
RTXRow.getString(int columnIndex) |
Get the value of the specified column as a String.
|
String |
RTXRow.getString(String columnName) |
Get the value of the specified column as a String.
|
void |
RTXRow.set(int columnIndex,
Object columnValue) |
Set the column to the value.
|
void |
RTXRow.set(RTXColumn column,
Object columnValue) |
Set the column to the value.
|
void |
RTXRow.set(String columnName,
Object columnValue) |
Set the column to the value.
|
void |
RTXWriter.setMetadata(RTXMetadata newMetadata) |
|