Class JpaCriteriaParameter<T>
- java.lang.Object
-
- org.hibernate.query.sqm.tree.AbstractSqmNode
-
- org.hibernate.query.sqm.tree.jpa.AbstractJpaTupleElement<T>
-
- org.hibernate.query.sqm.tree.jpa.AbstractJpaSelection<T>
-
- org.hibernate.query.sqm.tree.expression.AbstractSqmExpression<T>
-
- org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter<T>
-
- All Implemented Interfaces:
Expression<T>,ParameterExpression<T>,Selection<T>,Parameter<T>,TupleElement<T>,Serializable,Comparable<SqmParameter<T>>,JpaCriteriaNode,JpaExpression<T>,JpaParameterExpression<T>,JpaSelection<T>,JpaTupleElement<T>,QueryParameter<T>,QueryParameterImplementor<T>,SqmExpression<T>,SqmParameter<T>,SqmSelectableNode<T>,SqmExpressibleAccessor<T>,SqmNode,SqmTypedNode<T>,SqmVisitableNode
- Direct Known Subclasses:
ValueBindJpaCriteriaParameter
public class JpaCriteriaParameter<T> extends AbstractSqmExpression<T> implements SqmParameter<T>, QueryParameterImplementor<T>
JpaParameterExpressioncreated via JPACriteriaBuilder.Each occurrence of a
JpaParameterExpressionresults in a uniqueSqmParameter.
-
-
Constructor Summary
Constructors Modifier Constructor Description JpaCriteriaParameter(String name, BindableType<T> type, boolean allowsMultiValuedBinding, NodeBuilder nodeBuilder)protectedJpaCriteriaParameter(JpaCriteriaParameter<T> original)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <X> Xaccept(SemanticQueryWalker<X> walker)Accept the walker per visitationbooleanallowMultiValuedBinding()Can a collection/array of values be bound to this parameter?booleanallowsMultiValuedBinding()Does this parameter allow multi-valued (collection, array, etc) binding?voidappendHqlString(StringBuilder sb)voidapplyAnticipatedType(BindableType type)intcompareTo(SqmParameter anotherParameter)SqmParameter<T>copy()Make a copyJpaCriteriaParameter<T>copy(SqmCopyContext context)voiddisallowMultiValuedBinding()booleanequals(Object o)BindableType<T>getAnticipatedType()Based on the context it is declared, what is the anticipated type for bind values?BindableType<T>getHibernateType()Get the Hibernate Type associated with this parameter, if one.StringgetName()If this represents a named parameter, return that parameter name; otherwise returnnull.Class<T>getParameterType()IntegergetPosition()If this represents a positional parameter, return that parameter position; otherwise returnnull.TgetValue()inthashCode()protected voidinternalApplyInferableType(SqmExpressible<?> newType)NamedCallableQueryMemento.ParameterMementotoMemento()-
Methods inherited from class org.hibernate.query.sqm.tree.expression.AbstractSqmExpression
alias, applyInferableType, as, asBigDecimal, asBigInteger, asDouble, asFloat, asInteger, asLong, asString, getJavaTypeDescriptor, in, in, in, in, isNotNull, isNull, nodeBuilder
-
Methods inherited from class org.hibernate.query.sqm.tree.jpa.AbstractJpaSelection
getSelectionItems, isCompoundSelection
-
Methods inherited from class org.hibernate.query.sqm.tree.jpa.AbstractJpaTupleElement
copyTo, getAlias, getNodeType, setAlias, setExpressibleType
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hibernate.query.criteria.JpaSelection
alias, getCompoundSelectionItems, getSelectionItems
-
Methods inherited from interface org.hibernate.query.criteria.JpaTupleElement
getJavaType, getJavaTypeDescriptor
-
Methods inherited from interface jakarta.persistence.criteria.Selection
isCompoundSelection
-
Methods inherited from interface org.hibernate.query.sqm.tree.expression.SqmExpression
applyInferableType, as, asBigDecimal, asBigInteger, asDouble, asFloat, asInteger, asLong, asString, castAs, in, in, in, in, isNotNull, isNull, visitSubSelectableNodes
-
Methods inherited from interface org.hibernate.query.sqm.tree.SqmNode
asLoggableText, nodeBuilder
-
Methods inherited from interface org.hibernate.query.sqm.tree.expression.SqmParameter
getNodeType
-
Methods inherited from interface org.hibernate.query.sqm.tree.SqmTypedNode
getExpressible, getNodeJavaType
-
Methods inherited from interface org.hibernate.query.sqm.tree.SqmVisitableNode
toHqlString
-
Methods inherited from interface jakarta.persistence.TupleElement
getAlias
-
-
-
-
Constructor Detail
-
JpaCriteriaParameter
public JpaCriteriaParameter(String name, BindableType<T> type, boolean allowsMultiValuedBinding, NodeBuilder nodeBuilder)
-
JpaCriteriaParameter
protected JpaCriteriaParameter(JpaCriteriaParameter<T> original)
-
-
Method Detail
-
copy
public JpaCriteriaParameter<T> copy(SqmCopyContext context)
- Specified by:
copyin interfaceSqmExpression<T>- Specified by:
copyin interfaceSqmNode- Specified by:
copyin interfaceSqmParameter<T>- Specified by:
copyin interfaceSqmSelectableNode<T>- Specified by:
copyin interfaceSqmTypedNode<T>
-
getName
public String getName()
Description copied from interface:SqmParameterIf this represents a named parameter, return that parameter name; otherwise returnnull.
-
getValue
public T getValue()
-
getPosition
public Integer getPosition()
Description copied from interface:SqmParameterIf this represents a positional parameter, return that parameter position; otherwise returnnull.- Specified by:
getPositionin interfaceParameter<T>- Specified by:
getPositionin interfaceSqmParameter<T>- Returns:
- The parameter position
-
allowsMultiValuedBinding
public boolean allowsMultiValuedBinding()
Description copied from interface:QueryParameterDoes this parameter allow multi-valued (collection, array, etc) binding?This is only valid for HQL/JPQL and (I think) Criteria queries, and is determined based on the context of the parameters declaration.
- Specified by:
allowsMultiValuedBindingin interfaceQueryParameter<T>- Returns:
trueindicates that multi-valued binding is allowed for this parameter
-
disallowMultiValuedBinding
public void disallowMultiValuedBinding()
- Specified by:
disallowMultiValuedBindingin interfaceQueryParameterImplementor<T>
-
allowMultiValuedBinding
public boolean allowMultiValuedBinding()
Description copied from interface:SqmParameterCan a collection/array of values be bound to this parameter?This is allowed in very limited contexts within the query:
- as the value of an IN predicate if the only value is a single param
- (in non-strict JPA mode) as the final vararg to a function
- Specified by:
allowMultiValuedBindingin interfaceSqmParameter<T>- Returns:
trueif binding collection/array of values is allowed for this parameter;falseotherwise.
-
getAnticipatedType
public BindableType<T> getAnticipatedType()
Description copied from interface:SqmParameterBased on the context it is declared, what is the anticipated type for bind values?NOTE: If
SqmParameter.allowMultiValuedBinding()is true, this will indicate the Type of the individual values.- Specified by:
getAnticipatedTypein interfaceSqmParameter<T>- Returns:
- The anticipated Type.
-
applyAnticipatedType
public void applyAnticipatedType(BindableType type)
- Specified by:
applyAnticipatedTypein interfaceQueryParameterImplementor<T>
-
copy
public SqmParameter<T> copy()
Description copied from interface:SqmParameterMake a copy- Specified by:
copyin interfaceSqmParameter<T>
-
getHibernateType
public BindableType<T> getHibernateType()
Description copied from interface:QueryParameterGet the Hibernate Type associated with this parameter, if one. May returnnull.- Specified by:
getHibernateTypein interfaceQueryParameter<T>- Returns:
- The associated Hibernate Type, may be
null.
-
getParameterType
public Class<T> getParameterType()
- Specified by:
getParameterTypein interfaceParameter<T>
-
internalApplyInferableType
protected void internalApplyInferableType(SqmExpressible<?> newType)
- Overrides:
internalApplyInferableTypein classAbstractSqmExpression<T>
-
accept
public <X> X accept(SemanticQueryWalker<X> walker)
Description copied from interface:SqmVisitableNodeAccept the walker per visitation- Specified by:
acceptin interfaceSqmVisitableNode
-
toMemento
public NamedCallableQueryMemento.ParameterMemento toMemento()
- Specified by:
toMementoin interfaceQueryParameterImplementor<T>
-
appendHqlString
public void appendHqlString(StringBuilder sb)
- Specified by:
appendHqlStringin interfaceSqmVisitableNode
-
compareTo
public int compareTo(SqmParameter anotherParameter)
- Specified by:
compareToin interfaceComparable<T>- Specified by:
compareToin interfaceSqmParameter<T>
-
-