Uses of Interface
org.apache.ibatis.type.TypeHandler
Packages that use TypeHandler
Package
Description
Base package for the Configuration building code.
Contains the result processing logic.
Utilities for JDBC.
Base package for mapping.
Base package.
Type handlers.
-
Uses of TypeHandler in org.apache.ibatis.builder
Methods in org.apache.ibatis.builder that return TypeHandlerModifier and TypeMethodDescriptionprotected TypeHandler
<?> BaseBuilder.resolveTypeHandler
(Class<?> javaType, Class<? extends TypeHandler<?>> typeHandlerType) protected TypeHandler
<?> BaseBuilder.resolveTypeHandler
(Class<?> javaType, String typeHandlerAlias) -
Uses of TypeHandler in org.apache.ibatis.executor.resultset
Methods in org.apache.ibatis.executor.resultset that return TypeHandlerModifier and TypeMethodDescriptionTypeHandler
<?> ResultSetWrapper.getTypeHandler
(Class<?> propertyType, String columnName) Gets the type handler to use when reading the result set. -
Uses of TypeHandler in org.apache.ibatis.jdbc
Methods in org.apache.ibatis.jdbc that return TypeHandler -
Uses of TypeHandler in org.apache.ibatis.mapping
Methods in org.apache.ibatis.mapping that return TypeHandlerModifier and TypeMethodDescriptionTypeHandler
<?> ParameterMapping.getTypeHandler()
Used when setting parameters to the PreparedStatement.TypeHandler
<?> ResultMapping.getTypeHandler()
Methods in org.apache.ibatis.mapping with parameters of type TypeHandlerModifier and TypeMethodDescriptionParameterMapping.Builder.typeHandler
(TypeHandler<?> typeHandler) ResultMapping.Builder.typeHandler
(TypeHandler<?> typeHandler) Constructors in org.apache.ibatis.mapping with parameters of type TypeHandlerModifierConstructorDescriptionBuilder
(Configuration configuration, String property, TypeHandler<?> typeHandler) Builder
(Configuration configuration, String property, String column, TypeHandler<?> typeHandler) -
Uses of TypeHandler in org.apache.ibatis.session
Method parameters in org.apache.ibatis.session with type arguments of type TypeHandlerModifier and TypeMethodDescriptionvoid
Configuration.setDefaultEnumTypeHandler
(Class<? extends TypeHandler> typeHandler) Set a defaultTypeHandler
class forEnum
. -
Uses of TypeHandler in org.apache.ibatis.type
Classes in org.apache.ibatis.type that implement TypeHandlerModifier and TypeClassDescriptionclass
class
The baseTypeHandler
for references a generic type.class
class
class
class
class
class
class
class
class
class
class
class
class
class
class
class
EnumOrdinalTypeHandler<E extends Enum<E>>
class
EnumTypeHandler<E extends Enum<E>>
class
class
class
class
Type Handler forJapaneseDate
.class
class
class
class
class
class
class
class
class
class
class
class
class
class
class
ConvertString
to/fromSQLXML
.class
class
class
class
Type Handler forYearMonth
.class
class
Methods in org.apache.ibatis.type that return TypeHandlerModifier and TypeMethodDescription<T> TypeHandler
<T> TypeHandlerRegistry.getInstance
(Class<?> javaTypeClass, Class<?> typeHandlerClass) TypeHandler
<?> TypeHandlerRegistry.getMappingTypeHandler
(Class<? extends TypeHandler<?>> handlerType) <T> TypeHandler
<T> TypeHandlerRegistry.getTypeHandler
(Class<T> type) <T> TypeHandler
<T> TypeHandlerRegistry.getTypeHandler
(Class<T> type, JdbcType jdbcType) TypeHandler
<?> TypeHandlerRegistry.getTypeHandler
(JdbcType jdbcType) <T> TypeHandler
<T> TypeHandlerRegistry.getTypeHandler
(TypeReference<T> javaTypeReference) <T> TypeHandler
<T> TypeHandlerRegistry.getTypeHandler
(TypeReference<T> javaTypeReference, JdbcType jdbcType) TypeHandlerRegistry.getUnknownTypeHandler()
Methods in org.apache.ibatis.type that return types with arguments of type TypeHandlerMethods in org.apache.ibatis.type with parameters of type TypeHandlerModifier and TypeMethodDescription<T> void
TypeHandlerRegistry.register
(Class<T> type, JdbcType jdbcType, TypeHandler<? extends T> handler) <T> void
TypeHandlerRegistry.register
(Class<T> javaType, TypeHandler<? extends T> typeHandler) void
TypeHandlerRegistry.register
(JdbcType jdbcType, TypeHandler<?> handler) <T> void
TypeHandlerRegistry.register
(TypeHandler<T> typeHandler) <T> void
TypeHandlerRegistry.register
(TypeReference<T> javaTypeReference, TypeHandler<? extends T> handler) Method parameters in org.apache.ibatis.type with type arguments of type TypeHandlerModifier and TypeMethodDescriptionTypeHandler
<?> TypeHandlerRegistry.getMappingTypeHandler
(Class<? extends TypeHandler<?>> handlerType) void
TypeHandlerRegistry.setDefaultEnumTypeHandler
(Class<? extends TypeHandler> typeHandler) Set a defaultTypeHandler
class forEnum
.