Interface RowFormatter<T>
- Type Parameters:
T- the generic type
- All Known Implementing Classes:
StringRowFormatter
public interface RowFormatter<T>
The Row Formatter.
-
Method Summary
Modifier and Type Method Description Twrite(List<ColumnDescriptor> columnDescriptors, ResultSetMetaData resultSetMetaData, ResultSet resultSet)Write formatted row.
-
Method Details
-
write
T write(List<ColumnDescriptor> columnDescriptors, ResultSetMetaData resultSetMetaData, ResultSet resultSet) throws SQLExceptionWrite formatted row.- Parameters:
columnDescriptors- the column descriptorsresultSetMetaData- the result set meta dataresultSet- the result set- Returns:
- the t
- Throws:
SQLException- the SQL exception
-