Uses of Interface
org.hibernate.param.ParameterBinder
-
Packages that use ParameterBinder Package Description org.hibernate.loader.custom org.hibernate.loader.custom.sql org.hibernate.param -
-
Uses of ParameterBinder in org.hibernate.loader.custom
Methods in org.hibernate.loader.custom that return types with arguments of type ParameterBinder Modifier and Type Method Description java.util.List<ParameterBinder>
CustomQuery. getParameterValueBinders()
-
Uses of ParameterBinder in org.hibernate.loader.custom.sql
Classes in org.hibernate.loader.custom.sql that implement ParameterBinder Modifier and Type Class Description class
NamedParamBinder
class
PositionalParamBinder
Methods in org.hibernate.loader.custom.sql that return types with arguments of type ParameterBinder Modifier and Type Method Description java.util.List<ParameterBinder>
SQLCustomQuery. getParameterValueBinders()
java.util.List<ParameterBinder>
SQLQueryParser. getParameterValueBinders()
java.util.List<ParameterBinder>
SQLQueryParser.ParameterSubstitutionRecognizer. getParameterValueBinders()
-
Uses of ParameterBinder in org.hibernate.param
Subinterfaces of ParameterBinder in org.hibernate.param Modifier and Type Interface Description interface
ExplicitParameterSpecification
An additional contract for parameters which originate from parameters explicitly encountered in the source statement (HQL or native-SQL).interface
ParameterSpecification
Maintains information relating to parameters which need to get bound into a JDBCPreparedStatement
.Classes in org.hibernate.param that implement ParameterBinder Modifier and Type Class Description class
AbstractExplicitParameterSpecification
Convenience base class for explicitly defined query parameters.class
CollectionFilterKeyParameterSpecification
A specialized ParameterSpecification impl for dealing with a collection-key as part of a collection filter compilation.class
DynamicFilterParameterSpecification
A specialized ParameterSpecification impl for dealing with a dynamic filter parameters.class
NamedParameterSpecification
Parameter bind specification for an explicit named parameter.class
PositionalParameterSpecification
Parameter bind specification for an explicit positional (or ordinal) parameter.class
VersionTypeSeedParameterSpecification
Parameter bind specification used for optimisitc lock version seeding (from insert statements).
-