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 class
ParameterMapping.Builder
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getExpression()
Expression 'Not used'.Class<?>
getJavaType()
Used for handling output of callable statements.JdbcType
getJdbcType()
Used in the UnknownTypeHandler in case there is no handler for the property type.String
getJdbcTypeName()
Used for handling output of callable statements.ParameterMode
getMode()
Used for handling output of callable statements.Integer
getNumericScale()
Used for handling output of callable statements.String
getProperty()
String
getResultMapId()
Used for handling output of callable statements.TypeHandler<?>
getTypeHandler()
Used when setting parameters to the PreparedStatement.String
toString()
-
-
-
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
-
-