Uses of Class
org.apache.ibatis.mapping.ResultSetType
-
Packages that use ResultSetType 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.org.apache.ibatis.session Base package. -
-
Uses of ResultSetType in org.apache.ibatis.annotations
Methods in org.apache.ibatis.annotations that return ResultSetType Modifier and Type Method Description ResultSetType
resultSetType()
Returns the result set type. -
Uses of ResultSetType in org.apache.ibatis.builder
Methods in org.apache.ibatis.builder that return ResultSetType Modifier and Type Method Description protected ResultSetType
BaseBuilder. resolveResultSetType(String alias)
Methods in org.apache.ibatis.builder with parameters of type ResultSetType 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 ResultSetType in org.apache.ibatis.mapping
Methods in org.apache.ibatis.mapping that return ResultSetType Modifier and Type Method Description ResultSetType
MappedStatement. getResultSetType()
static ResultSetType
ResultSetType. valueOf(String name)
Returns the enum constant of this type with the specified name.static ResultSetType[]
ResultSetType. 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 ResultSetType Modifier and Type Method Description MappedStatement.Builder
MappedStatement.Builder. resultSetType(ResultSetType resultSetType)
-
Uses of ResultSetType in org.apache.ibatis.session
Fields in org.apache.ibatis.session declared as ResultSetType Modifier and Type Field Description protected ResultSetType
Configuration. defaultResultSetType
Methods in org.apache.ibatis.session that return ResultSetType Modifier and Type Method Description ResultSetType
Configuration. getDefaultResultSetType()
Gets the default result set type.Methods in org.apache.ibatis.session with parameters of type ResultSetType Modifier and Type Method Description void
Configuration. setDefaultResultSetType(ResultSetType defaultResultSetType)
Sets the default result set type.
-