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
ConstructorDescriptionCreates 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 oneResultSet
column as an object via theResultSet.getObject()
method that performs type conversions.- Specified by:
handle
in interfaceorg.apache.commons.dbutils.ResultSetHandler<Float>
- Overrides:
handle
in classorg.apache.commons.dbutils.handlers.ScalarHandler<Float>
- Parameters:
rs
-ResultSet
to process.- Returns:
- The column or
null
if 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)
-