Uses of Class
org.apache.ibatis.mapping.MappedStatement

Packages that use MappedStatement
org.apache.ibatis.builder TODO fillme. 
org.apache.ibatis.executor TODO fillme. 
org.apache.ibatis.executor.keygen TODO fillme. 
org.apache.ibatis.executor.loader TODO fillme. 
org.apache.ibatis.executor.parameter TODO fillme. 
org.apache.ibatis.executor.resultset TODO fillme. 
org.apache.ibatis.executor.statement TODO fillme. 
org.apache.ibatis.mapping TODO fillme. 
org.apache.ibatis.session TODO fillme. 
 

Uses of MappedStatement in org.apache.ibatis.builder
 

Methods in org.apache.ibatis.builder that return MappedStatement
 MappedStatement MapperBuilderAssistant.addMappedStatement(String id, SqlSource sqlSource, StatementType statementType, SqlCommandType sqlCommandType, Integer fetchSize, Integer timeout, String parameterMap, Class<?> parameterType, String resultMap, Class<?> resultType, ResultSetType resultSetType, boolean flushCache, boolean useCache, KeyGenerator keyGenerator, String keyProperty, String keyColumn, String databaseId)
           
 

Uses of MappedStatement in org.apache.ibatis.executor
 

Methods in org.apache.ibatis.executor that return MappedStatement
 MappedStatement BatchResult.getMappedStatement()
           
 

Methods in org.apache.ibatis.executor with parameters of type MappedStatement
 CacheKey Executor.createCacheKey(MappedStatement ms, Object parameterObject, RowBounds rowBounds, BoundSql boundSql)
           
 CacheKey CachingExecutor.createCacheKey(MappedStatement ms, Object parameterObject, RowBounds rowBounds, BoundSql boundSql)
           
 CacheKey BaseExecutor.createCacheKey(MappedStatement ms, Object parameterObject, RowBounds rowBounds, BoundSql boundSql)
           
 void Executor.deferLoad(MappedStatement ms, MetaObject resultObject, String property, CacheKey key)
           
 void CachingExecutor.deferLoad(MappedStatement ms, MetaObject resultObject, String property, CacheKey key)
           
 void BaseExecutor.deferLoad(MappedStatement ms, MetaObject resultObject, String property, CacheKey key)
           
<E> List<E>
SimpleExecutor.doQuery(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
           
<E> List<E>
ReuseExecutor.doQuery(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
           
<E> List<E>
BatchExecutor.doQuery(MappedStatement ms, Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
           
protected abstract
<E> List<E>
BaseExecutor.doQuery(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
           
 int SimpleExecutor.doUpdate(MappedStatement ms, Object parameter)
           
 int ReuseExecutor.doUpdate(MappedStatement ms, Object parameter)
           
 int BatchExecutor.doUpdate(MappedStatement ms, Object parameterObject)
           
protected abstract  int BaseExecutor.doUpdate(MappedStatement ms, Object parameter)
           
 boolean Executor.isCached(MappedStatement ms, CacheKey key)
           
 boolean CachingExecutor.isCached(MappedStatement ms, CacheKey key)
           
 boolean BaseExecutor.isCached(MappedStatement ms, CacheKey key)
           
<E> List<E>
Executor.query(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler)
           
<E> List<E>
CachingExecutor.query(MappedStatement ms, Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler)
           
<E> List<E>
BaseExecutor.query(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler)
           
<E> List<E>
Executor.query(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, CacheKey cacheKey, BoundSql boundSql)
           
<E> List<E>
CachingExecutor.query(MappedStatement ms, Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler, CacheKey key, BoundSql boundSql)
           
<E> List<E>
BaseExecutor.query(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, CacheKey key, BoundSql boundSql)
           
 int Executor.update(MappedStatement ms, Object parameter)
           
 int CachingExecutor.update(MappedStatement ms, Object parameterObject)
           
 int BaseExecutor.update(MappedStatement ms, Object parameter)
           
 

Constructors in org.apache.ibatis.executor with parameters of type MappedStatement
BatchResult(MappedStatement mappedStatement, String sql)
           
BatchResult(MappedStatement mappedStatement, String sql, Object parameterObject)
           
 

Uses of MappedStatement in org.apache.ibatis.executor.keygen
 

Methods in org.apache.ibatis.executor.keygen with parameters of type MappedStatement
 void SelectKeyGenerator.processAfter(Executor executor, MappedStatement ms, Statement stmt, Object parameter)
           
 void NoKeyGenerator.processAfter(Executor executor, MappedStatement ms, Statement stmt, Object parameter)
           
 void KeyGenerator.processAfter(Executor executor, MappedStatement ms, Statement stmt, Object parameter)
           
 void Jdbc3KeyGenerator.processAfter(Executor executor, MappedStatement ms, Statement stmt, Object parameter)
           
 void Jdbc3KeyGenerator.processBatch(MappedStatement ms, Statement stmt, List<Object> parameters)
           
 void SelectKeyGenerator.processBefore(Executor executor, MappedStatement ms, Statement stmt, Object parameter)
           
 void NoKeyGenerator.processBefore(Executor executor, MappedStatement ms, Statement stmt, Object parameter)
           
 void KeyGenerator.processBefore(Executor executor, MappedStatement ms, Statement stmt, Object parameter)
           
 void Jdbc3KeyGenerator.processBefore(Executor executor, MappedStatement ms, Statement stmt, Object parameter)
           
 

Constructors in org.apache.ibatis.executor.keygen with parameters of type MappedStatement
SelectKeyGenerator(MappedStatement keyStatement, boolean executeBefore)
           
 

Uses of MappedStatement in org.apache.ibatis.executor.loader
 

Fields in org.apache.ibatis.executor.loader declared as MappedStatement
protected  MappedStatement ResultLoader.mappedStatement
           
 

Constructors in org.apache.ibatis.executor.loader with parameters of type MappedStatement
ResultLoader(Configuration config, Executor executor, MappedStatement mappedStatement, Object parameterObject, Class<?> targetType, CacheKey cacheKey, BoundSql boundSql)
           
 

Uses of MappedStatement in org.apache.ibatis.executor.parameter
 

Constructors in org.apache.ibatis.executor.parameter with parameters of type MappedStatement
DefaultParameterHandler(MappedStatement mappedStatement, Object parameterObject, BoundSql boundSql)
           
 

Uses of MappedStatement in org.apache.ibatis.executor.resultset
 

Fields in org.apache.ibatis.executor.resultset declared as MappedStatement
protected  MappedStatement FastResultSetHandler.mappedStatement
           
 

Constructors in org.apache.ibatis.executor.resultset with parameters of type MappedStatement
FastResultSetHandler(Executor executor, MappedStatement mappedStatement, ParameterHandler parameterHandler, ResultHandler resultHandler, BoundSql boundSql, RowBounds rowBounds)
           
NestedResultSetHandler(Executor executor, MappedStatement mappedStatement, ParameterHandler parameterHandler, ResultHandler resultHandler, BoundSql boundSql, RowBounds rowBounds)
           
 

Uses of MappedStatement in org.apache.ibatis.executor.statement
 

Fields in org.apache.ibatis.executor.statement declared as MappedStatement
protected  MappedStatement BaseStatementHandler.mappedStatement
           
 

Constructors in org.apache.ibatis.executor.statement with parameters of type MappedStatement
BaseStatementHandler(Executor executor, MappedStatement mappedStatement, Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
           
CallableStatementHandler(Executor executor, MappedStatement mappedStatement, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
           
PreparedStatementHandler(Executor executor, MappedStatement mappedStatement, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
           
RoutingStatementHandler(Executor executor, MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
           
SimpleStatementHandler(Executor executor, MappedStatement mappedStatement, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
           
 

Uses of MappedStatement in org.apache.ibatis.mapping
 

Methods in org.apache.ibatis.mapping that return MappedStatement
 MappedStatement MappedStatement.Builder.build()
           
 

Uses of MappedStatement in org.apache.ibatis.session
 

Fields in org.apache.ibatis.session with type parameters of type MappedStatement
protected  Map<String,MappedStatement> Configuration.mappedStatements
           
 

Methods in org.apache.ibatis.session that return MappedStatement
 MappedStatement Configuration.getMappedStatement(String id)
           
 MappedStatement Configuration.getMappedStatement(String id, boolean validateIncompleteStatements)
           
 

Methods in org.apache.ibatis.session that return types with arguments of type MappedStatement
 Collection<MappedStatement> Configuration.getMappedStatements()
           
 

Methods in org.apache.ibatis.session with parameters of type MappedStatement
 void Configuration.addMappedStatement(MappedStatement ms)
           
 ParameterHandler Configuration.newParameterHandler(MappedStatement mappedStatement, Object parameterObject, BoundSql boundSql)
           
 ResultSetHandler Configuration.newResultSetHandler(Executor executor, MappedStatement mappedStatement, RowBounds rowBounds, ParameterHandler parameterHandler, ResultHandler resultHandler, BoundSql boundSql)
           
 StatementHandler Configuration.newStatementHandler(Executor executor, MappedStatement mappedStatement, Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
           
 



Copyright © 2010-2012 MyBatis.org. All Rights Reserved.