Uses of Class
org.apache.ibatis.mapping.SqlCommandType
-
Packages that use SqlCommandType Package Description org.apache.ibatis.binding Binds mapper interfaces with mapped statements.org.apache.ibatis.builder Base package for the Configuration building code.org.apache.ibatis.mapping Base package for mapping. -
-
Uses of SqlCommandType in org.apache.ibatis.binding
Methods in org.apache.ibatis.binding that return SqlCommandType Modifier and Type Method Description SqlCommandType
MapperMethod.SqlCommand. getType()
-
Uses of SqlCommandType in org.apache.ibatis.builder
Methods in org.apache.ibatis.builder with parameters of type SqlCommandType 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 SqlCommandType in org.apache.ibatis.mapping
Methods in org.apache.ibatis.mapping that return SqlCommandType Modifier and Type Method Description SqlCommandType
MappedStatement. getSqlCommandType()
static SqlCommandType
SqlCommandType. valueOf(String name)
Returns the enum constant of this type with the specified name.static SqlCommandType[]
SqlCommandType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.apache.ibatis.mapping with parameters of type SqlCommandType Constructor Description Builder(Configuration configuration, String id, SqlSource sqlSource, SqlCommandType sqlCommandType)
-