Package org.knowm.yank.handlers
Class FloatScalarHandler
java.lang.Object
org.apache.commons.dbutils.handlers.ScalarHandler<Float>
org.knowm.yank.handlers.FloatScalarHandler
- All Implemented Interfaces:
org.apache.commons.dbutils.ResultSetHandler<Float>
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new instance of ColumnListHandler.FloatScalarHandler(int columnIndex) Creates a new instance of ColumnListHandler.FloatScalarHandler(String columnName) Creates a new instance of ColumnListHandler. -
Method Summary
-
Constructor Details
-
FloatScalarHandler
public FloatScalarHandler()Creates a new instance of ColumnListHandler. The first column of each row will be returned fromhandle(). -
FloatScalarHandler
public FloatScalarHandler(int columnIndex) Creates a new instance of ColumnListHandler.- Parameters:
columnIndex- The index of the column to retrieve from theResultSet.
-
FloatScalarHandler
Creates a new instance of ColumnListHandler.- Parameters:
columnName- The name of the column to retrieve from theResultSet.
-
-
Method Details
-
handle
Returns oneResultSetcolumn as an object via theResultSet.getObject()method that performs type conversions.- Specified by:
handlein interfaceorg.apache.commons.dbutils.ResultSetHandler<Float>- Overrides:
handlein classorg.apache.commons.dbutils.handlers.ScalarHandler<Float>- Parameters:
rs-ResultSetto process.- Returns:
- The column or
nullif there are no rows in theResultSet. - Throws:
SQLException- if a database access error occursClassCastException- if the class datatype does not match the column type- See Also:
-
ResultSetHandler.handle(java.sql.ResultSet)
-