Class ParameterHandlerContext
- java.lang.Object
-
- pro.chenggang.project.reactive.mybatis.support.r2dbc.executor.parameter.ParameterHandlerContext
-
public class ParameterHandlerContext extends Object
The type Parameter handler context.- Version:
- 1.0.0
- Author:
- Gang Cheng
-
-
Constructor Summary
Constructors Constructor Description ParameterHandlerContext()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetIndex()Gets index.Class<?>getJavaType()Gets java type.org.apache.ibatis.type.JdbcTypegetJdbcType()Gets jdbc type.voidsetIndex(int index)Sets index.voidsetJavaType(Class<?> javaType)Sets java type.voidsetJdbcType(org.apache.ibatis.type.JdbcType jdbcType)Sets jdbc type.
-
-
-
Method Detail
-
getIndex
public int getIndex()
Gets index.- Returns:
- the index
-
setIndex
public void setIndex(int index)
Sets index.- Parameters:
index- the index
-
getJdbcType
public org.apache.ibatis.type.JdbcType getJdbcType()
Gets jdbc type.- Returns:
- the jdbc type
-
setJdbcType
public void setJdbcType(org.apache.ibatis.type.JdbcType jdbcType)
Sets jdbc type.- Parameters:
jdbcType- the jdbc type
-
getJavaType
public Class<?> getJavaType()
Gets java type.- Returns:
- the java type
-
setJavaType
public void setJavaType(Class<?> javaType)
Sets java type.- Parameters:
javaType- the java type
-
-