org.mentabean.type
Class DoubleType

java.lang.Object
  extended by org.mentabean.type.DoubleType
All Implemented Interfaces:
DBType<Double>

public class DoubleType
extends Object
implements DBType<Double>


Constructor Summary
DoubleType()
           
 
Method Summary
 void bindToStmt(PreparedStatement stmt, int index, Double value)
          Do what you have to do to bind a value to a prepared statement.
 boolean canBeNull()
           
 String getAnsiType()
           
 Double getFromResultSet(ResultSet rset, int index)
          Do what you have to do to get and return this database type from a result set.
 Double getFromResultSet(ResultSet rset, String field)
          Do what you have to do to get and return this database type from a result set.
 Class<? extends Object> getTypeClass()
          Return the java type representing this database type.
 DoubleType nullable(boolean flag)
           
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DoubleType

public DoubleType()
Method Detail

canBeNull

public boolean canBeNull()
Specified by:
canBeNull in interface DBType<Double>

nullable

public DoubleType nullable(boolean flag)

getAnsiType

public String getAnsiType()
Specified by:
getAnsiType in interface DBType<Double>

toString

public String toString()
Overrides:
toString in class Object

getFromResultSet

public Double getFromResultSet(ResultSet rset,
                               int index)
                        throws SQLException
Description copied from interface: DBType
Do what you have to do to get and return this database type from a result set.

Specified by:
getFromResultSet in interface DBType<Double>
Parameters:
rset - The result set
index - The index in the result set
Returns:
The value from the result set
Throws:
SQLException

getFromResultSet

public Double getFromResultSet(ResultSet rset,
                               String field)
                        throws SQLException
Description copied from interface: DBType
Do what you have to do to get and return this database type from a result set.

Specified by:
getFromResultSet in interface DBType<Double>
Parameters:
rset - The result set
field - The name of the field in the result set
Returns:
The value from the result set
Throws:
SQLException

getTypeClass

public Class<? extends Object> getTypeClass()
Description copied from interface: DBType
Return the java type representing this database type.

Specified by:
getTypeClass in interface DBType<Double>
Returns:
The java type of this database type.

bindToStmt

public void bindToStmt(PreparedStatement stmt,
                       int index,
                       Double value)
                throws SQLException
Description copied from interface: DBType
Do what you have to do to bind a value to a prepared statement.

Specified by:
bindToStmt in interface DBType<Double>
Parameters:
stmt - The prepared statement
index - The index in the prepared statement
value - The value to be bound to the prepared statement
Throws:
SQLException


Copyright © 2012. All Rights Reserved.