Package org.apache.ibatis.type
Class TimeOnlyTypeHandler
- java.lang.Object
-
- org.apache.ibatis.type.TypeReference<T>
-
- org.apache.ibatis.type.BaseTypeHandler<java.util.Date>
-
- org.apache.ibatis.type.TimeOnlyTypeHandler
-
- All Implemented Interfaces:
TypeHandler<java.util.Date>
public class TimeOnlyTypeHandler extends BaseTypeHandler<java.util.Date>
-
-
Field Summary
-
Fields inherited from class org.apache.ibatis.type.BaseTypeHandler
configuration
-
-
Constructor Summary
Constructors Constructor Description TimeOnlyTypeHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Date
getNullableResult(java.sql.CallableStatement cs, int columnIndex)
java.util.Date
getNullableResult(java.sql.ResultSet rs, int columnIndex)
java.util.Date
getNullableResult(java.sql.ResultSet rs, java.lang.String columnName)
Gets the nullable result.void
setNonNullParameter(java.sql.PreparedStatement ps, int i, java.util.Date parameter, JdbcType jdbcType)
-
Methods inherited from class org.apache.ibatis.type.BaseTypeHandler
getResult, getResult, getResult, setConfiguration, setParameter
-
Methods inherited from class org.apache.ibatis.type.TypeReference
getRawType, getSuperclassTypeParameter, toString
-
-
-
-
Method Detail
-
setNonNullParameter
public void setNonNullParameter(java.sql.PreparedStatement ps, int i, java.util.Date parameter, JdbcType jdbcType) throws java.sql.SQLException
- Specified by:
setNonNullParameter
in classBaseTypeHandler<java.util.Date>
- Throws:
java.sql.SQLException
-
getNullableResult
public java.util.Date getNullableResult(java.sql.ResultSet rs, java.lang.String columnName) throws java.sql.SQLException
Description copied from class:BaseTypeHandler
Gets the nullable result.- Specified by:
getNullableResult
in classBaseTypeHandler<java.util.Date>
- Parameters:
rs
- the rscolumnName
- Colunm name, when configurationuseColumnLabel
isfalse
- Returns:
- the nullable result
- Throws:
java.sql.SQLException
- the SQL exception
-
getNullableResult
public java.util.Date getNullableResult(java.sql.ResultSet rs, int columnIndex) throws java.sql.SQLException
- Specified by:
getNullableResult
in classBaseTypeHandler<java.util.Date>
- Throws:
java.sql.SQLException
-
getNullableResult
public java.util.Date getNullableResult(java.sql.CallableStatement cs, int columnIndex) throws java.sql.SQLException
- Specified by:
getNullableResult
in classBaseTypeHandler<java.util.Date>
- Throws:
java.sql.SQLException
-
-