Class MappedStatement

java.lang.Object
org.apache.ibatis.mapping.MappedStatement

public final class MappedStatement extends Object
  • Field Details

    • resource

      private String resource
    • configuration

      private Configuration configuration
    • id

      private String id
    • fetchSize

      private Integer fetchSize
    • timeout

      private Integer timeout
    • statementType

      private StatementType statementType
    • resultSetType

      private ResultSetType resultSetType
    • sqlSource

      private SqlSource sqlSource
    • cache

      private Cache cache
    • parameterMap

      private ParameterMap parameterMap
    • resultMaps

      private List<ResultMap> resultMaps
    • flushCacheRequired

      private boolean flushCacheRequired
    • useCache

      private boolean useCache
    • resultOrdered

      private boolean resultOrdered
    • sqlCommandType

      private SqlCommandType sqlCommandType
    • keyGenerator

      private KeyGenerator keyGenerator
    • keyProperties

      private String[] keyProperties
    • keyColumns

      private String[] keyColumns
    • hasNestedResultMaps

      private boolean hasNestedResultMaps
    • databaseId

      private String databaseId
    • statementLog

      private Log statementLog
    • lang

      private LanguageDriver lang
    • resultSets

      private String[] resultSets
  • Constructor Details

    • MappedStatement

      MappedStatement()
  • Method Details

    • 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()
    • getResultMaps

      public List<ResultMap> getResultMaps()
    • 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.
      Gets the resul sets.
      Returns:
      the resul sets
    • getBoundSql

      public BoundSql getBoundSql(Object parameterObject)
    • delimitedStringToArray

      private static String[] delimitedStringToArray(String in)