Package org.apache.ibatis.type
Class YearMonthTypeHandler
- java.lang.Object
-
- org.apache.ibatis.type.TypeReference<T>
-
- org.apache.ibatis.type.BaseTypeHandler<YearMonth>
-
- org.apache.ibatis.type.YearMonthTypeHandler
-
- All Implemented Interfaces:
TypeHandler<YearMonth>
public class YearMonthTypeHandler extends BaseTypeHandler<YearMonth>
Type Handler forYearMonth
.YearMonthTypeHandler relies upon
YearMonth.parse
. Therefore column values are expected as strings. The format must be uuuu-MM. Example: "2016-08"- Since:
- 3.4.5
- Author:
- Björn Raupach
-
-
Field Summary
-
Fields inherited from class org.apache.ibatis.type.BaseTypeHandler
configuration
-
-
Constructor Summary
Constructors Constructor Description YearMonthTypeHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description YearMonth
getNullableResult(CallableStatement cs, int columnIndex)
YearMonth
getNullableResult(ResultSet rs, int columnIndex)
YearMonth
getNullableResult(ResultSet rs, String columnName)
Gets the nullable result.void
setNonNullParameter(PreparedStatement ps, int i, YearMonth yearMonth, JdbcType jt)
-
Methods inherited from class org.apache.ibatis.type.BaseTypeHandler
getResult, getResult, getResult, setConfiguration, setParameter
-
Methods inherited from class org.apache.ibatis.type.TypeReference
getRawType, toString
-
-
-
-
Method Detail
-
setNonNullParameter
public void setNonNullParameter(PreparedStatement ps, int i, YearMonth yearMonth, JdbcType jt) throws SQLException
- Specified by:
setNonNullParameter
in classBaseTypeHandler<YearMonth>
- Throws:
SQLException
-
getNullableResult
public YearMonth getNullableResult(ResultSet rs, String columnName) throws SQLException
Description copied from class:BaseTypeHandler
Gets the nullable result.- Specified by:
getNullableResult
in classBaseTypeHandler<YearMonth>
- Parameters:
rs
- the rscolumnName
- Column name, when configurationuseColumnLabel
isfalse
- Returns:
- the nullable result
- Throws:
SQLException
- the SQL exception
-
getNullableResult
public YearMonth getNullableResult(ResultSet rs, int columnIndex) throws SQLException
- Specified by:
getNullableResult
in classBaseTypeHandler<YearMonth>
- Throws:
SQLException
-
getNullableResult
public YearMonth getNullableResult(CallableStatement cs, int columnIndex) throws SQLException
- Specified by:
getNullableResult
in classBaseTypeHandler<YearMonth>
- Throws:
SQLException
-
-