类 NamedParameterDescriptor
- java.lang.Object
-
- org.hibernate.engine.query.spi.AbstractParameterDescriptor
-
- org.hibernate.engine.query.spi.NamedParameterDescriptor
-
- 所有已实现的接口:
javax.persistence.Parameter,QueryParameter
public class NamedParameterDescriptor extends AbstractParameterDescriptor
Descriptor regarding a named parameter.- 作者:
- Steve Ebersole
-
-
构造器概要
构造器 构造器 说明 NamedParameterDescriptor(String name, Type expectedType, int[] sourceLocations)Constructs a NamedParameterDescriptor
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 booleanequals(Object o)StringgetName()inthashCode()-
从类继承的方法 org.hibernate.engine.query.spi.AbstractParameterDescriptor
getExpectedType, getHibernateType, getParameterType, getPosition, getSourceLocations, resetExpectedType
-
-
-
-
构造器详细资料
-
NamedParameterDescriptor
public NamedParameterDescriptor(String name, Type expectedType, int[] sourceLocations)
Constructs a NamedParameterDescriptor- 参数:
name- The name of the parameterexpectedType- The expected type of the parameter, according to the translatorsourceLocations- The locations of the named parameters (aye aye aye)
-
-