接口 ParameterSpecification
-
- 所有超级接口:
ParameterBinder
- 所有已知子接口:
ExplicitParameterSpecification
- 所有已知实现类:
AbstractExplicitParameterSpecification,CollectionFilterKeyParameterSpecification,DynamicFilterParameterSpecification,NamedParameterSpecification,PositionalParameterSpecification,VersionTypeSeedParameterSpecification
public interface ParameterSpecification extends ParameterBinder
Maintains information relating to parameters which need to get bound into a JDBCPreparedStatement.- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 TypegetExpectedType()Get the type which we are expecting for a bind into this parameter based on translated contextual information.StringrenderDisplayInfo()Render this parameter into displayable info (for logging, etc).voidsetExpectedType(Type expectedType)Injects the expected type.-
从接口继承的方法 org.hibernate.param.ParameterBinder
bind
-
-
-
-
方法详细资料
-
getExpectedType
Type getExpectedType()
Get the type which we are expecting for a bind into this parameter based on translated contextual information.- 返回:
- The expected type.
-
setExpectedType
void setExpectedType(Type expectedType)
Injects the expected type. Called during translation.- 参数:
expectedType- The type to expect.
-
renderDisplayInfo
String renderDisplayInfo()
Render this parameter into displayable info (for logging, etc).- 返回:
- The displayable info.
-
-