Package org.apache.ibatis.type
Class ArrayTypeHandler
- java.lang.Object
-
- org.apache.ibatis.type.TypeReference<T>
-
- org.apache.ibatis.type.BaseTypeHandler<java.lang.Object>
-
- org.apache.ibatis.type.ArrayTypeHandler
-
- All Implemented Interfaces:
TypeHandler<java.lang.Object>
public class ArrayTypeHandler extends BaseTypeHandler<java.lang.Object>
-
-
Field Summary
Fields Modifier and Type Field Description private static java.util.concurrent.ConcurrentHashMap<java.lang.Class<?>,java.lang.String>
STANDARD_MAPPING
-
Fields inherited from class org.apache.ibatis.type.BaseTypeHandler
configuration
-
-
Constructor Summary
Constructors Constructor Description ArrayTypeHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.lang.Object
extractArray(java.sql.Array array)
java.lang.Object
getNullableResult(java.sql.CallableStatement cs, int columnIndex)
java.lang.Object
getNullableResult(java.sql.ResultSet rs, int columnIndex)
java.lang.Object
getNullableResult(java.sql.ResultSet rs, java.lang.String columnName)
Gets the nullable result.protected java.lang.String
resolveTypeName(java.lang.Class<?> type)
void
setNonNullParameter(java.sql.PreparedStatement ps, int i, java.lang.Object 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.lang.Object parameter, JdbcType jdbcType) throws java.sql.SQLException
- Specified by:
setNonNullParameter
in classBaseTypeHandler<java.lang.Object>
- Throws:
java.sql.SQLException
-
resolveTypeName
protected java.lang.String resolveTypeName(java.lang.Class<?> type)
-
getNullableResult
public java.lang.Object 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.lang.Object>
- Parameters:
rs
- the rscolumnName
- Colunm name, when configurationuseColumnLabel
isfalse
- Returns:
- the nullable result
- Throws:
java.sql.SQLException
- the SQL exception
-
getNullableResult
public java.lang.Object getNullableResult(java.sql.ResultSet rs, int columnIndex) throws java.sql.SQLException
- Specified by:
getNullableResult
in classBaseTypeHandler<java.lang.Object>
- Throws:
java.sql.SQLException
-
getNullableResult
public java.lang.Object getNullableResult(java.sql.CallableStatement cs, int columnIndex) throws java.sql.SQLException
- Specified by:
getNullableResult
in classBaseTypeHandler<java.lang.Object>
- Throws:
java.sql.SQLException
-
extractArray
protected java.lang.Object extractArray(java.sql.Array array) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
-