NamedParameterDescriptorpublic class NamedParameterDescriptor extends Object implements SerializableDescriptor regarding a named parameter. |
Fields Summary |
---|
private final String | name | private final org.hibernate.type.Type | expectedType | private final int[] | sourceLocations | private final boolean | jpaStyle |
Constructors Summary |
---|
public NamedParameterDescriptor(String name, org.hibernate.type.Type expectedType, int[] sourceLocations, boolean jpaStyle)
this.name = name;
this.expectedType = expectedType;
this.sourceLocations = sourceLocations;
this.jpaStyle = jpaStyle;
|
|