Uses of Class
org.apache.ibatis.mapping.ResultMap
-
Packages that use ResultMap Package Description org.apache.ibatis.builder Base package for the Configuration building codeorg.apache.ibatis.cursor.defaults Default implementation for cursor featureorg.apache.ibatis.executor.resultset Contains the result processing logicorg.apache.ibatis.mapping Base package for mapping.org.apache.ibatis.session Base package. -
-
Uses of ResultMap in org.apache.ibatis.builder
Methods in org.apache.ibatis.builder that return ResultMap Modifier and Type Method Description ResultMap
MapperBuilderAssistant. addResultMap(java.lang.String id, java.lang.Class<?> type, java.lang.String extend, Discriminator discriminator, java.util.List<ResultMapping> resultMappings, java.lang.Boolean autoMapping)
ResultMap
ResultMapResolver. resolve()
-
Uses of ResultMap in org.apache.ibatis.cursor.defaults
Constructors in org.apache.ibatis.cursor.defaults with parameters of type ResultMap Constructor Description DefaultCursor(DefaultResultSetHandler resultSetHandler, ResultMap resultMap, ResultSetWrapper rsw, RowBounds rowBounds)
-
Uses of ResultMap in org.apache.ibatis.executor.resultset
Methods in org.apache.ibatis.executor.resultset that return ResultMap Modifier and Type Method Description ResultMap
DefaultResultSetHandler. resolveDiscriminatedResultMap(java.sql.ResultSet rs, ResultMap resultMap, java.lang.String columnPrefix)
Methods in org.apache.ibatis.executor.resultset with parameters of type ResultMap Modifier and Type Method Description java.util.List<java.lang.String>
ResultSetWrapper. getMappedColumnNames(ResultMap resultMap, java.lang.String columnPrefix)
java.util.List<java.lang.String>
ResultSetWrapper. getUnmappedColumnNames(ResultMap resultMap, java.lang.String columnPrefix)
void
DefaultResultSetHandler. handleRowValues(ResultSetWrapper rsw, ResultMap resultMap, ResultHandler<?> resultHandler, RowBounds rowBounds, ResultMapping parentMapping)
ResultMap
DefaultResultSetHandler. resolveDiscriminatedResultMap(java.sql.ResultSet rs, ResultMap resultMap, java.lang.String columnPrefix)
-
Uses of ResultMap in org.apache.ibatis.mapping
Methods in org.apache.ibatis.mapping that return ResultMap Modifier and Type Method Description ResultMap
ResultMap.Builder. build()
Methods in org.apache.ibatis.mapping that return types with arguments of type ResultMap Modifier and Type Method Description java.util.List<ResultMap>
MappedStatement. getResultMaps()
Method parameters in org.apache.ibatis.mapping with type arguments of type ResultMap Modifier and Type Method Description MappedStatement.Builder
MappedStatement.Builder. resultMaps(java.util.List<ResultMap> resultMaps)
-
Uses of ResultMap in org.apache.ibatis.session
Fields in org.apache.ibatis.session with type parameters of type ResultMap Modifier and Type Field Description protected java.util.Map<java.lang.String,ResultMap>
Configuration. resultMaps
Methods in org.apache.ibatis.session that return ResultMap Modifier and Type Method Description ResultMap
Configuration. getResultMap(java.lang.String id)
Methods in org.apache.ibatis.session that return types with arguments of type ResultMap Modifier and Type Method Description java.util.Collection<ResultMap>
Configuration. getResultMaps()
Methods in org.apache.ibatis.session with parameters of type ResultMap Modifier and Type Method Description void
Configuration. addResultMap(ResultMap rm)
protected void
Configuration. checkGloballyForDiscriminatedNestedResultMaps(ResultMap rm)
protected void
Configuration. checkLocallyForDiscriminatedNestedResultMaps(ResultMap rm)
-