Package org.apache.ofbiz.entity.jdbc
Class JdbcValueHandler.DoubleJdbcValueHandler
- java.lang.Object
-
- org.apache.ofbiz.entity.jdbc.JdbcValueHandler<java.lang.Double>
-
- org.apache.ofbiz.entity.jdbc.JdbcValueHandler.DoubleJdbcValueHandler
-
- Enclosing class:
- JdbcValueHandler<T>
protected static class JdbcValueHandler.DoubleJdbcValueHandler extends JdbcValueHandler<java.lang.Double>
Ajava.lang.Double
JDBC value handler.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.ofbiz.entity.jdbc.JdbcValueHandler
JdbcValueHandler.ArrayJdbcValueHandler, JdbcValueHandler.BigDecimalJdbcValueHandler, JdbcValueHandler.BlobJdbcValueHandler, JdbcValueHandler.BooleanJdbcValueHandler, JdbcValueHandler.ByteArrayJdbcValueHandler, JdbcValueHandler.ClobJdbcValueHandler, JdbcValueHandler.DateJdbcValueHandler, JdbcValueHandler.DoubleJdbcValueHandler, JdbcValueHandler.FloatJdbcValueHandler, JdbcValueHandler.IntegerJdbcValueHandler, JdbcValueHandler.LongJdbcValueHandler, JdbcValueHandler.ObjectJdbcValueHandler, JdbcValueHandler.RowIdJdbcValueHandler, JdbcValueHandler.ShortJdbcValueHandler, JdbcValueHandler.StringJdbcValueHandler, JdbcValueHandler.TimeJdbcValueHandler, JdbcValueHandler.TimestampJdbcValueHandler
-
-
Field Summary
-
Fields inherited from class org.apache.ofbiz.entity.jdbc.JdbcValueHandler
module
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
DoubleJdbcValueHandler(int jdbcType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
castAndSetValue(java.sql.PreparedStatement ps, int parameterIndex, java.lang.Double obj)
Sets a value in aPreparedStatement
.java.lang.Class<java.lang.Double>
getJavaClass()
java.lang.Double
getValue(java.sql.ResultSet rs, int columnIndex)
Returns a value from aResultSet
.protected JdbcValueHandler<java.lang.Double>
newInstance(int sqlType)
Returns a new instance of the object - initialized with the specified SQL type.-
Methods inherited from class org.apache.ofbiz.entity.jdbc.JdbcValueHandler
create, getInstance, getSqlType, parseSqlType, serializeObject, setValue
-
-
-
-
Method Detail
-
getJavaClass
public java.lang.Class<java.lang.Double> getJavaClass()
- Specified by:
getJavaClass
in classJdbcValueHandler<java.lang.Double>
-
castAndSetValue
protected void castAndSetValue(java.sql.PreparedStatement ps, int parameterIndex, java.lang.Double obj) throws java.sql.SQLException
Description copied from class:JdbcValueHandler
Sets a value in aPreparedStatement
. Theobj
argument is converted to the correct data type. Subclasses override this method to castobj
to the correct data type and call the appropriatePreparedStatement.setXxx
method.- Specified by:
castAndSetValue
in classJdbcValueHandler<java.lang.Double>
- Throws:
java.sql.SQLException
-
getValue
public java.lang.Double getValue(java.sql.ResultSet rs, int columnIndex) throws java.sql.SQLException
Description copied from class:JdbcValueHandler
Returns a value from aResultSet
. The returned object is converted to the Java data type specified in the fieldtype file.- Specified by:
getValue
in classJdbcValueHandler<java.lang.Double>
- Parameters:
rs
- the ResultSet objectcolumnIndex
- the column index- Returns:
- get value from result set
- Throws:
java.sql.SQLException
-
newInstance
protected JdbcValueHandler<java.lang.Double> newInstance(int sqlType)
Description copied from class:JdbcValueHandler
Returns a new instance of the object - initialized with the specified SQL type.- Specified by:
newInstance
in classJdbcValueHandler<java.lang.Double>
- Parameters:
sqlType
- the sql type- Returns:
- returns a new instance
-
-