Package org.apache.ibatis.mapping
Class ResultMapping
- java.lang.Object
 - 
- org.apache.ibatis.mapping.ResultMapping
 
 
- 
public class ResultMapping extends Object
- Author:
 - Clinton Begin
 
 
- 
- 
Nested Class Summary
Nested Classes Modifier and Type Class Description static classResultMapping.Builder 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetColumn()StringgetColumnPrefix()List<ResultMapping>getComposites()List<ResultFlag>getFlags()StringgetForeignColumn()Class<?>getJavaType()JdbcTypegetJdbcType()StringgetNestedQueryId()StringgetNestedResultMapId()Set<String>getNotNullColumns()StringgetProperty()StringgetResultSet()TypeHandler<?>getTypeHandler()inthashCode()booleanisCompositeResult()booleanisLazy()booleanisSimple()voidsetForeignColumn(String foreignColumn)voidsetLazy(boolean lazy)StringtoString() 
 - 
 
- 
- 
Method Detail
- 
getProperty
public String getProperty()
 
- 
getColumn
public String getColumn()
 
- 
getJavaType
public Class<?> getJavaType()
 
- 
getJdbcType
public JdbcType getJdbcType()
 
- 
getTypeHandler
public TypeHandler<?> getTypeHandler()
 
- 
getNestedResultMapId
public String getNestedResultMapId()
 
- 
getNestedQueryId
public String getNestedQueryId()
 
- 
getColumnPrefix
public String getColumnPrefix()
 
- 
getFlags
public List<ResultFlag> getFlags()
 
- 
getComposites
public List<ResultMapping> getComposites()
 
- 
isCompositeResult
public boolean isCompositeResult()
 
- 
getResultSet
public String getResultSet()
 
- 
getForeignColumn
public String getForeignColumn()
 
- 
setForeignColumn
public void setForeignColumn(String foreignColumn)
 
- 
isLazy
public boolean isLazy()
 
- 
setLazy
public void setLazy(boolean lazy)
 
- 
isSimple
public boolean isSimple()
 
 - 
 
 -