Uses of Class
org.apache.ibatis.mapping.SqlCommandType
-
Packages that use SqlCommandType Package Description org.apache.ibatis.binding Bings mapper interfaces with mapped statements.org.apache.ibatis.builder Base package for the Configuration building code.org.apache.ibatis.builder.annotation Parses annotions to create a Configuration.org.apache.ibatis.mapping Base package for mapping. -
-
Uses of SqlCommandType in org.apache.ibatis.binding
Fields in org.apache.ibatis.binding declared as SqlCommandType Modifier and Type Field Description private SqlCommandType
MapperMethod.SqlCommand. type
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(java.lang.String id, SqlSource sqlSource, StatementType statementType, SqlCommandType sqlCommandType, java.lang.Integer fetchSize, java.lang.Integer timeout, java.lang.String parameterMap, java.lang.Class<?> parameterType, java.lang.String resultMap, java.lang.Class<?> resultType, ResultSetType resultSetType, boolean flushCache, boolean useCache, boolean resultOrdered, KeyGenerator keyGenerator, java.lang.String keyProperty, java.lang.String keyColumn, java.lang.String databaseId, LanguageDriver lang)
Backward compatibility signature 'addMappedStatement'.MappedStatement
MapperBuilderAssistant. addMappedStatement(java.lang.String id, SqlSource sqlSource, StatementType statementType, SqlCommandType sqlCommandType, java.lang.Integer fetchSize, java.lang.Integer timeout, java.lang.String parameterMap, java.lang.Class<?> parameterType, java.lang.String resultMap, java.lang.Class<?> resultType, ResultSetType resultSetType, boolean flushCache, boolean useCache, boolean resultOrdered, KeyGenerator keyGenerator, java.lang.String keyProperty, java.lang.String keyColumn, java.lang.String databaseId, LanguageDriver lang, java.lang.String resultSets)
-
Uses of SqlCommandType in org.apache.ibatis.builder.annotation
Fields in org.apache.ibatis.builder.annotation declared as SqlCommandType Modifier and Type Field Description private SqlCommandType
MapperAnnotationBuilder.AnnotationWrapper. sqlCommandType
Methods in org.apache.ibatis.builder.annotation that return SqlCommandType Modifier and Type Method Description (package private) SqlCommandType
MapperAnnotationBuilder.AnnotationWrapper. getSqlCommandType()
-
Uses of SqlCommandType in org.apache.ibatis.mapping
Fields in org.apache.ibatis.mapping declared as SqlCommandType Modifier and Type Field Description private SqlCommandType
MappedStatement. sqlCommandType
Methods in org.apache.ibatis.mapping that return SqlCommandType Modifier and Type Method Description SqlCommandType
MappedStatement. getSqlCommandType()
static SqlCommandType
SqlCommandType. valueOf(java.lang.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, java.lang.String id, SqlSource sqlSource, SqlCommandType sqlCommandType)
-