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 class
ResultMapping.Builder
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getColumn()
String
getColumnPrefix()
List<ResultMapping>
getComposites()
List<ResultFlag>
getFlags()
String
getForeignColumn()
Class<?>
getJavaType()
JdbcType
getJdbcType()
String
getNestedQueryId()
String
getNestedResultMapId()
Set<String>
getNotNullColumns()
String
getProperty()
String
getResultSet()
TypeHandler<?>
getTypeHandler()
int
hashCode()
boolean
isCompositeResult()
boolean
isLazy()
boolean
isSimple()
void
setForeignColumn(String foreignColumn)
void
setLazy(boolean lazy)
String
toString()
-
-
-
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()
-
-