Uses of Class
org.apache.ibatis.mapping.StatementType
-
Packages that use StatementType Package Description org.apache.ibatis.annotations Contains all the annotation that are used in mapper interfaces.org.apache.ibatis.builder Base package for the Configuration building code.org.apache.ibatis.mapping Base package for mapping. -
-
Uses of StatementType in org.apache.ibatis.annotations
Methods in org.apache.ibatis.annotations that return StatementType Modifier and Type Method Description StatementType
statementType()
Return the statement type.StatementType
statementType()
Returns the statement type to use. -
Uses of StatementType in org.apache.ibatis.builder
Methods in org.apache.ibatis.builder with parameters of type StatementType Modifier and Type Method Description 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, boolean resultOrdered, KeyGenerator keyGenerator, String keyProperty, String keyColumn, String databaseId, LanguageDriver lang)
Backward compatibility signature 'addMappedStatement'.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, boolean resultOrdered, KeyGenerator keyGenerator, String keyProperty, String keyColumn, String databaseId, LanguageDriver lang, String resultSets)
-
Uses of StatementType in org.apache.ibatis.mapping
Methods in org.apache.ibatis.mapping that return StatementType Modifier and Type Method Description StatementType
MappedStatement. getStatementType()
static StatementType
StatementType. valueOf(String name)
Returns the enum constant of this type with the specified name.static StatementType[]
StatementType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.ibatis.mapping with parameters of type StatementType Modifier and Type Method Description MappedStatement.Builder
MappedStatement.Builder. statementType(StatementType statementType)
-