Package org.apache.ibatis.mapping
Class MappedStatement
- java.lang.Object
-
- org.apache.ibatis.mapping.MappedStatement
-
public final class MappedStatement extends Object
- Author:
- Clinton Begin
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
MappedStatement.Builder
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description BoundSql
getBoundSql(Object parameterObject)
Cache
getCache()
Configuration
getConfiguration()
String
getDatabaseId()
Integer
getFetchSize()
String
getId()
String[]
getKeyColumns()
KeyGenerator
getKeyGenerator()
String[]
getKeyProperties()
LanguageDriver
getLang()
ParameterMap
getParameterMap()
String
getResource()
String[]
getResulSets()
Deprecated.UsegetResultSets()
List<ResultMap>
getResultMaps()
String[]
getResultSets()
ResultSetType
getResultSetType()
SqlCommandType
getSqlCommandType()
SqlSource
getSqlSource()
Log
getStatementLog()
StatementType
getStatementType()
Integer
getTimeout()
boolean
hasNestedResultMaps()
boolean
isFlushCacheRequired()
boolean
isResultOrdered()
boolean
isUseCache()
-
-
-
Method Detail
-
getKeyGenerator
public KeyGenerator getKeyGenerator()
-
getSqlCommandType
public SqlCommandType getSqlCommandType()
-
getResource
public String getResource()
-
getConfiguration
public Configuration getConfiguration()
-
getId
public String getId()
-
hasNestedResultMaps
public boolean hasNestedResultMaps()
-
getFetchSize
public Integer getFetchSize()
-
getTimeout
public Integer getTimeout()
-
getStatementType
public StatementType getStatementType()
-
getResultSetType
public ResultSetType getResultSetType()
-
getSqlSource
public SqlSource getSqlSource()
-
getParameterMap
public ParameterMap getParameterMap()
-
getCache
public Cache getCache()
-
isFlushCacheRequired
public boolean isFlushCacheRequired()
-
isUseCache
public boolean isUseCache()
-
isResultOrdered
public boolean isResultOrdered()
-
getDatabaseId
public String getDatabaseId()
-
getKeyProperties
public String[] getKeyProperties()
-
getKeyColumns
public String[] getKeyColumns()
-
getStatementLog
public Log getStatementLog()
-
getLang
public LanguageDriver getLang()
-
getResultSets
public String[] getResultSets()
-
getResulSets
@Deprecated public String[] getResulSets()
Deprecated.UsegetResultSets()
Gets the resul sets.- Returns:
- the resul sets
-
-