Uses of Interface
com.ibatis.sqlmap.engine.type.TypeHandler

Packages that use TypeHandler
com.ibatis.sqlmap.engine.builder.xml   
com.ibatis.sqlmap.engine.mapping.parameter   
com.ibatis.sqlmap.engine.mapping.result   
com.ibatis.sqlmap.engine.type   
 

Uses of TypeHandler in com.ibatis.sqlmap.engine.builder.xml
 

Methods in com.ibatis.sqlmap.engine.builder.xml that return TypeHandler
 TypeHandler BaseParser.resolveTypeHandler(TypeHandlerFactory typeHandlerFactory, java.lang.Class clazz, java.lang.String propertyName, java.lang.String javaType, java.lang.String jdbcType)
           
 TypeHandler BaseParser.resolveTypeHandler(TypeHandlerFactory typeHandlerFactory, java.lang.Class clazz, java.lang.String propertyName, java.lang.String javaType, java.lang.String jdbcType, boolean useSetterToResolve)
           
 

Uses of TypeHandler in com.ibatis.sqlmap.engine.mapping.parameter
 

Methods in com.ibatis.sqlmap.engine.mapping.parameter that return TypeHandler
 TypeHandler BasicParameterMapping.getTypeHandler()
           
 

Methods in com.ibatis.sqlmap.engine.mapping.parameter with parameters of type TypeHandler
 void BasicParameterMapping.setTypeHandler(TypeHandler typeHandler)
           
 

Uses of TypeHandler in com.ibatis.sqlmap.engine.mapping.result
 

Methods in com.ibatis.sqlmap.engine.mapping.result that return TypeHandler
 TypeHandler BasicResultMapping.getTypeHandler()
          Getter for the type handler for the column
 

Methods in com.ibatis.sqlmap.engine.mapping.result with parameters of type TypeHandler
 void BasicResultMapping.setTypeHandler(TypeHandler typeHandler)
          Setter for the type handler for the column
 

Uses of TypeHandler in com.ibatis.sqlmap.engine.type
 

Classes in com.ibatis.sqlmap.engine.type that implement TypeHandler
 class BaseTypeHandler
          Base type handler for convenience
 class BigDecimalTypeHandler
          BigDecimal implementation of TypeHandler
 class BooleanTypeHandler
          Boolean implementation of TypeHandler
 class ByteArrayTypeHandler
          byte[] implementation of TypeHandler
 class ByteTypeHandler
          Byte implementation of TypeHandler
 class CustomTypeHandler
          Custom type handler for adding a TypeHandlerCallback
 class DateOnlyTypeHandler
          Date only implementation of TypeHandler
 class DateTypeHandler
          Date (and time) implementation of TypeHandler
 class DoubleTypeHandler
          Double implementation of TypeHandler
 class FloatTypeHandler
          Float implementation of TypeHandler
 class IntegerTypeHandler
          Integer Decimal implementation of TypeHandler
 class LongTypeHandler
          Long implementation of TypeHandler
 class ObjectTypeHandler
          Object implementation of TypeHandler
 class ShortTypeHandler
          Short implementation of TypeHandler
 class SqlDateTypeHandler
          SQL Date implementation of TypeHandler
 class SqlTimestampTypeHandler
          SQL timestamp implementation of TypeHandler
 class SqlTimeTypeHandler
          SQL time implementation of TypeHandler
 class StringTypeHandler
          String implementation of TypeHandler
 class TimeOnlyTypeHandler
          Time (only) implementation of TypeHandler
 class UnknownTypeHandler
          Implementation of TypeHandler for dealing with unknown types
 

Methods in com.ibatis.sqlmap.engine.type that return TypeHandler
 TypeHandler TypeHandlerFactory.getTypeHandler(java.lang.Class type)
          Get a TypeHandler for a class
 TypeHandler TypeHandlerFactory.getTypeHandler(java.lang.Class type, java.lang.String jdbcType)
          Get a TypeHandler for a class and a JDBC type
 TypeHandler TypeHandlerFactory.getUnkownTypeHandler()
          When in doubt, get the "unknown" type handler
 

Methods in com.ibatis.sqlmap.engine.type with parameters of type TypeHandler
 void TypeHandlerFactory.register(java.lang.Class type, TypeHandler handler)
          Register (add) a type handler for a class
 void TypeHandlerFactory.register(java.lang.Class type, java.lang.String jdbcType, TypeHandler handler)
          Register (add) a type handler for a class and JDBC type