接口 ExplicitParameterSpecification
-
- 所有超级接口:
ParameterBinder,ParameterSpecification
- 所有已知实现类:
AbstractExplicitParameterSpecification,NamedParameterSpecification,PositionalParameterSpecification
public interface ExplicitParameterSpecification extends ParameterSpecification
An additional contract for parameters which originate from parameters explicitly encountered in the source statement (HQL or native-SQL).- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 intgetSourceColumn()Retrieves the column number (within thegetSourceLine()) where this parameter occurs.intgetSourceLine()Retrieves the line number on which this parameter occurs in the source query.-
从接口继承的方法 org.hibernate.param.ParameterBinder
bind
-
从接口继承的方法 org.hibernate.param.ParameterSpecification
getExpectedType, renderDisplayInfo, setExpectedType
-
-
-
-
方法详细资料
-
getSourceLine
int getSourceLine()
Retrieves the line number on which this parameter occurs in the source query.- 返回:
- The line number.
-
getSourceColumn
int getSourceColumn()
Retrieves the column number (within thegetSourceLine()) where this parameter occurs.- 返回:
- The column number.
-
-