Package org.apache.ibatis.mapping
Class ParameterMapping
- java.lang.Object
-
- org.apache.ibatis.mapping.ParameterMapping
-
public class ParameterMapping extends Object
- Author:
- Clinton Begin
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classParameterMapping.Builder
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetExpression()Expression 'Not used'.Class<?>getJavaType()Used for handling output of callable statements.JdbcTypegetJdbcType()Used in the UnknownTypeHandler in case there is no handler for the property type.StringgetJdbcTypeName()Used for handling output of callable statements.ParameterModegetMode()Used for handling output of callable statements.IntegergetNumericScale()Used for handling output of callable statements.StringgetProperty()StringgetResultMapId()Used for handling output of callable statements.TypeHandler<?>getTypeHandler()Used when setting parameters to the PreparedStatement.StringtoString()
-
-
-
Method Detail
-
getProperty
public String getProperty()
-
getMode
public ParameterMode getMode()
Used for handling output of callable statements.- Returns:
- the mode
-
getJavaType
public Class<?> getJavaType()
Used for handling output of callable statements.- Returns:
- the java type
-
getJdbcType
public JdbcType getJdbcType()
Used in the UnknownTypeHandler in case there is no handler for the property type.- Returns:
- the jdbc type
-
getNumericScale
public Integer getNumericScale()
Used for handling output of callable statements.- Returns:
- the numeric scale
-
getTypeHandler
public TypeHandler<?> getTypeHandler()
Used when setting parameters to the PreparedStatement.- Returns:
- the type handler
-
getResultMapId
public String getResultMapId()
Used for handling output of callable statements.- Returns:
- the result map id
-
getJdbcTypeName
public String getJdbcTypeName()
Used for handling output of callable statements.- Returns:
- the jdbc type name
-
getExpression
public String getExpression()
Expression 'Not used'.- Returns:
- the expression
-
-