Uses of Class
org.apache.ibatis.mapping.ResultFlag
-
Packages that use ResultFlag Package Description org.apache.ibatis.builder Base package for the Configuration building code.org.apache.ibatis.builder.xml Parses XML files to create a Configuration.org.apache.ibatis.mapping Base package for mapping. -
-
Uses of ResultFlag in org.apache.ibatis.builder
Method parameters in org.apache.ibatis.builder with type arguments of type ResultFlag Modifier and Type Method Description ResultMapping
MapperBuilderAssistant. buildResultMapping(java.lang.Class<?> resultType, java.lang.String property, java.lang.String column, java.lang.Class<?> javaType, JdbcType jdbcType, java.lang.String nestedSelect, java.lang.String nestedResultMap, java.lang.String notNullColumn, java.lang.String columnPrefix, java.lang.Class<? extends TypeHandler<?>> typeHandler, java.util.List<ResultFlag> flags)
Backward compatibility signature 'buildResultMapping'.ResultMapping
MapperBuilderAssistant. buildResultMapping(java.lang.Class<?> resultType, java.lang.String property, java.lang.String column, java.lang.Class<?> javaType, JdbcType jdbcType, java.lang.String nestedSelect, java.lang.String nestedResultMap, java.lang.String notNullColumn, java.lang.String columnPrefix, java.lang.Class<? extends TypeHandler<?>> typeHandler, java.util.List<ResultFlag> flags, java.lang.String resultSet, java.lang.String foreignColumn, boolean lazy)
-
Uses of ResultFlag in org.apache.ibatis.builder.xml
Method parameters in org.apache.ibatis.builder.xml with type arguments of type ResultFlag Modifier and Type Method Description private ResultMapping
XMLMapperBuilder. buildResultMappingFromContext(XNode context, java.lang.Class<?> resultType, java.util.List<ResultFlag> flags)
-
Uses of ResultFlag in org.apache.ibatis.mapping
Fields in org.apache.ibatis.mapping with type parameters of type ResultFlag Modifier and Type Field Description private java.util.List<ResultFlag>
ResultMapping. flags
Methods in org.apache.ibatis.mapping that return ResultFlag Modifier and Type Method Description static ResultFlag
ResultFlag. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ResultFlag[]
ResultFlag. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.ibatis.mapping that return types with arguments of type ResultFlag Modifier and Type Method Description java.util.List<ResultFlag>
ResultMapping. getFlags()
Method parameters in org.apache.ibatis.mapping with type arguments of type ResultFlag Modifier and Type Method Description ResultMapping.Builder
ResultMapping.Builder. flags(java.util.List<ResultFlag> flags)
-