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.DategetNullableResult(java.sql.CallableStatement cs, int columnIndex)java.util.DategetNullableResult(java.sql.ResultSet rs, int columnIndex)java.util.DategetNullableResult(java.sql.ResultSet rs, java.lang.String columnName)Gets the nullable result.voidsetNonNullParameter(java.sql.PreparedStatement ps, int i, java.util.Date parameter, JdbcType jdbcType)private java.util.DatetoDate(java.sql.Time time)-
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:
setNonNullParameterin 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.SQLExceptionDescription copied from class:BaseTypeHandlerGets the nullable result.- Specified by:
getNullableResultin classBaseTypeHandler<java.util.Date>- Parameters:
rs- the rscolumnName- Column name, when configurationuseColumnLabelisfalse- 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:
getNullableResultin 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:
getNullableResultin classBaseTypeHandler<java.util.Date>- Throws:
java.sql.SQLException
-
toDate
private java.util.Date toDate(java.sql.Time time)
-
-