Uses of Class
org.apache.ibatis.mapping.ParameterMapping
-
Packages that use ParameterMapping Package Description org.apache.ibatis.builder Base package for the Configuration building code.org.apache.ibatis.executor.resultset Contains the result processing logic.org.apache.ibatis.mapping Base package for mapping. -
-
Uses of ParameterMapping in org.apache.ibatis.builder
Fields in org.apache.ibatis.builder with type parameters of type ParameterMapping Modifier and Type Field Description private java.util.List<ParameterMapping>
SqlSourceBuilder.ParameterMappingTokenHandler. parameterMappings
private java.util.List<ParameterMapping>
StaticSqlSource. parameterMappings
Methods in org.apache.ibatis.builder that return ParameterMapping Modifier and Type Method Description ParameterMapping
MapperBuilderAssistant. buildParameterMapping(java.lang.Class<?> parameterType, java.lang.String property, java.lang.Class<?> javaType, JdbcType jdbcType, java.lang.String resultMap, ParameterMode parameterMode, java.lang.Class<? extends TypeHandler<?>> typeHandler, java.lang.Integer numericScale)
private ParameterMapping
SqlSourceBuilder.ParameterMappingTokenHandler. buildParameterMapping(java.lang.String content)
Methods in org.apache.ibatis.builder that return types with arguments of type ParameterMapping Modifier and Type Method Description java.util.List<ParameterMapping>
SqlSourceBuilder.ParameterMappingTokenHandler. getParameterMappings()
Method parameters in org.apache.ibatis.builder with type arguments of type ParameterMapping Modifier and Type Method Description ParameterMap
MapperBuilderAssistant. addParameterMap(java.lang.String id, java.lang.Class<?> parameterClass, java.util.List<ParameterMapping> parameterMappings)
Constructor parameters in org.apache.ibatis.builder with type arguments of type ParameterMapping Constructor Description StaticSqlSource(Configuration configuration, java.lang.String sql, java.util.List<ParameterMapping> parameterMappings)
-
Uses of ParameterMapping in org.apache.ibatis.executor.resultset
Methods in org.apache.ibatis.executor.resultset with parameters of type ParameterMapping Modifier and Type Method Description private void
DefaultResultSetHandler. handleRefCursorOutputParameter(java.sql.ResultSet rs, ParameterMapping parameterMapping, MetaObject metaParam)
-
Uses of ParameterMapping in org.apache.ibatis.mapping
Fields in org.apache.ibatis.mapping declared as ParameterMapping Modifier and Type Field Description private ParameterMapping
ParameterMapping.Builder. parameterMapping
Fields in org.apache.ibatis.mapping with type parameters of type ParameterMapping Modifier and Type Field Description private java.util.List<ParameterMapping>
BoundSql. parameterMappings
private java.util.List<ParameterMapping>
ParameterMap. parameterMappings
Methods in org.apache.ibatis.mapping that return ParameterMapping Modifier and Type Method Description ParameterMapping
ParameterMapping.Builder. build()
Methods in org.apache.ibatis.mapping that return types with arguments of type ParameterMapping Modifier and Type Method Description java.util.List<ParameterMapping>
BoundSql. getParameterMappings()
java.util.List<ParameterMapping>
ParameterMap. getParameterMappings()
Constructor parameters in org.apache.ibatis.mapping with type arguments of type ParameterMapping Constructor Description BoundSql(Configuration configuration, java.lang.String sql, java.util.List<ParameterMapping> parameterMappings, java.lang.Object parameterObject)
Builder(Configuration configuration, java.lang.String id, java.lang.Class<?> type, java.util.List<ParameterMapping> parameterMappings)
-