| |
|
| java.lang.Object com.ibatis.sqlmap.engine.mapping.result.BasicResultMapping
BasicResultMapping | public class BasicResultMapping implements ResultMapping(Code) | | Basic implementation of ResultMapping
|
getColumnIndex | public int getColumnIndex()(Code) | | Getter for the column index that we are mapping
- the column index |
getColumnName | public String getColumnName()(Code) | | Getter for the column name that we are mapping
- the column name |
getErrorString | public String getErrorString()(Code) | | Getter for the error message when something goes wrong mapping this property
- the error message |
getJavaType | public Class getJavaType()(Code) | | Setter for the Java type of the column
- the Java type |
getJdbcType | public int getJdbcType()(Code) | | Getter for the JDBC type of the column
- the JDBC type |
getJdbcTypeName | public String getJdbcTypeName()(Code) | | Getter for the JDBC type name of the column
- the JDBC type name |
getNestedResultMapName | public String getNestedResultMapName()(Code) | | |
getNullValue | public String getNullValue()(Code) | | Getter for what to return if the column is null
- the null substitution |
getStatementName | public String getStatementName()(Code) | | Getter for the name of the statement
- the name |
getTypeHandler | public TypeHandler getTypeHandler()(Code) | | Getter for the type handler for the column
- the type handler |
setColumnIndex | public void setColumnIndex(int columnIndex)(Code) | | Setter for the column index we are mapping (used by the automap or builder)
Parameters: columnIndex - - the column index |
setColumnName | public void setColumnName(String columnName)(Code) | | Setter for the column name we are mapping (used by the automap or builder)
Parameters: columnName - - the column name |
setJavaType | public void setJavaType(Class javaType)(Code) | | Setter for the Java type of the column
Parameters: javaType - - the Java type |
setJdbcTypeName | public void setJdbcTypeName(String jdbcTypeName)(Code) | | Setter for the JDBC type name of the column
Parameters: jdbcTypeName - - the JDBC type name |
setNestedResultMapName | public void setNestedResultMapName(String nestedResultMapName)(Code) | | |
setNullValue | public void setNullValue(String nullValue)(Code) | | Setter for what to return if the column is null
Parameters: nullValue - - the null substitution |
setPropertyName | public void setPropertyName(String propertyName)(Code) | | Setter for the object property name (used by the automap, and the builder)
Parameters: propertyName - - the property name |
setStatementName | public void setStatementName(String statementName)(Code) | | Setter for the name of the statement
Parameters: statementName - - the name |
setTypeHandler | public void setTypeHandler(TypeHandler typeHandler)(Code) | | Setter for the type handler for the column
Parameters: typeHandler - - the type handler |
|
|
|