Uses of Interface
org.apache.ibatis.type.TypeHandler
-
Packages that use TypeHandler Package Description org.apache.ibatis.annotations Contains all the annotation that are used in mapper interfaces.org.apache.ibatis.builder Base package for the Configuration building code.org.apache.ibatis.executor.resultset Contains the result processing logic.org.apache.ibatis.jdbc Utilities for JDBC.org.apache.ibatis.mapping Base package for mapping.org.apache.ibatis.session Base package.org.apache.ibatis.type Type handlers. -
-
Uses of TypeHandler in org.apache.ibatis.annotations
Methods in org.apache.ibatis.annotations that return types with arguments of type TypeHandler Modifier and Type Method Description Class<? extends TypeHandler>typeHandler()Returns theTypeHandlertype for retrieving a column value from result set.Class<? extends TypeHandler>typeHandler()Returns theTypeHandlertype for retrieving a column value from result set.Class<? extends TypeHandler>typeHandler()Returns theTypeHandlertype for retrieving a column value from result set. -
Uses of TypeHandler in org.apache.ibatis.builder
Methods in org.apache.ibatis.builder that return TypeHandler Modifier and Type Method Description protected 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 TypeHandler Modifier and Type Method Description TypeHandler<?>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 Modifier and Type Method Description TypeHandler<?>Null. getTypeHandler() -
Uses of TypeHandler in org.apache.ibatis.mapping
Methods in org.apache.ibatis.mapping that return TypeHandler Modifier and Type Method Description TypeHandler<?>ParameterMapping. getTypeHandler()Used when setting parameters to the PreparedStatement.TypeHandler<?>ResultMapping. getTypeHandler()Methods in org.apache.ibatis.mapping with parameters of type TypeHandler Modifier and Type Method Description ParameterMapping.BuilderParameterMapping.Builder. typeHandler(TypeHandler<?> typeHandler)ResultMapping.BuilderResultMapping.Builder. typeHandler(TypeHandler<?> typeHandler)Constructors in org.apache.ibatis.mapping with parameters of type TypeHandler Constructor Description Builder(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 TypeHandler Modifier and Type Method Description voidConfiguration. setDefaultEnumTypeHandler(Class<? extends TypeHandler> typeHandler)Set a defaultTypeHandlerclass forEnum. -
Uses of TypeHandler in org.apache.ibatis.type
Methods in org.apache.ibatis.type that return TypeHandler Modifier and Type Method Description <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)TypeHandler<Object>TypeHandlerRegistry. getUnknownTypeHandler()Methods in org.apache.ibatis.type that return types with arguments of type TypeHandler Modifier and Type Method Description Collection<TypeHandler<?>>TypeHandlerRegistry. getTypeHandlers()Gets the type handlers.Methods in org.apache.ibatis.type with parameters of type TypeHandler Modifier and Type Method Description <T> voidTypeHandlerRegistry. register(Class<T> type, JdbcType jdbcType, TypeHandler<? extends T> handler)<T> voidTypeHandlerRegistry. register(Class<T> javaType, TypeHandler<? extends T> typeHandler)voidTypeHandlerRegistry. register(JdbcType jdbcType, TypeHandler<?> handler)<T> voidTypeHandlerRegistry. register(TypeHandler<T> typeHandler)<T> voidTypeHandlerRegistry. register(TypeReference<T> javaTypeReference, TypeHandler<? extends T> handler)Method parameters in org.apache.ibatis.type with type arguments of type TypeHandler Modifier and Type Method Description TypeHandler<?>TypeHandlerRegistry. getMappingTypeHandler(Class<? extends TypeHandler<?>> handlerType)voidTypeHandlerRegistry. setDefaultEnumTypeHandler(Class<? extends TypeHandler> typeHandler)Set a defaultTypeHandlerclass forEnum.
-