Class SqmJpaCriteriaParameterWrapper<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.SqmJpaCriteriaParameterWrapper<T>
- All Implemented Interfaces:
Expression<T>, ParameterExpression<T>, Selection<T>, Parameter<T>, TupleElement<T>, Serializable, JpaCriteriaNode, JpaExpression<T>, JpaParameterExpression<T>, JpaSelection<T>, JpaTupleElement<T>, SqmExpression<T>, SqmParameter<T>, SqmSelectableNode<T>, SqmCacheable, SqmExpressibleAccessor<T>, SqmNode, SqmTypedNode<T>, SqmVisitableNode
public class SqmJpaCriteriaParameterWrapper<T>
extends AbstractSqmExpression<T>
implements SqmParameter<T>
Acts as the per-use wrapper for a
JpaCriteriaParameter
(CriteriaBuilder.parameter(Class)).
JpaCriteriaParameter is the "domain query parameter"
(QueryParameter while
SqmJpaCriteriaParameterWrapper is the SqmParameter
- See Also:
-
Field Summary
Fields inherited from interface SqmParameter
COMPARATOR -
Constructor Summary
ConstructorsConstructorDescriptionSqmJpaCriteriaParameterWrapper(@Nullable BindableType<T> type, JpaCriteriaParameter<T> jpaCriteriaParameter, int criteriaParameterId, int unnamedParameterId, NodeBuilder criteriaBuilder) -
Method Summary
Modifier and TypeMethodDescription<X> Xaccept(SemanticQueryWalker<X> walker) Unsupported.booleanCan a collection/array of values be bound to this parameter?voidappendHqlString(StringBuilder hql, SqmRenderContext context) intcopy()Make a copycopy(SqmCopyContext context) final boolean@Nullable BindableType<T> Based on the context it is declared, what is the anticipated type for bind values?intThe 0-based encounter of aJpaCriteriaParameterinstance in aSqmQuerySource.CRITERIAquery.@Nullable StringgetName()If this represents a named parameter, return that parameter name; otherwise returnnull.@Nullable IntegerIf this represents a positional parameter, return that parameter position; otherwise returnnull.intThe 0-based encounter of an unnamedJpaCriteriaParameterinstance in aSqmQuerySource.CRITERIAquery.inthashCode()booleanisCompatible(Object object) voidvisitSubSelectableNodes(Consumer<SqmSelectableNode<?>> jpaSelectionConsumer) Visit each of this selectable's direct sub-selectables - used to support JPA'sSelectionmodel (which is really a "selectable", just poorly named and poorly definedMethods inherited from class AbstractSqmExpression
applyInferableType, as, cast, equalTo, equalTo, getJavaTypeDescriptor, in, in, in, in, internalApplyInferableType, isNotNull, isNull, nodeBuilder, notEqualTo, notEqualToMethods inherited from class AbstractJpaSelection
alias, getSelectionItems, isCompoundSelectionMethods inherited from class AbstractJpaTupleElement
copyTo, getAlias, getNodeType, setAlias, setExpressibleTypeMethods inherited from class Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface JpaSelection
alias, getCompoundSelectionItems, getSelectionItemsMethods inherited from interface JpaTupleElement
getJavaType, getJavaTypeDescriptor, getJavaTypeName, isEnumMethods inherited from interface Selection
isCompoundSelectionMethods inherited from interface SqmExpression
applyInferableType, as, asBigDecimal, asBigInteger, asDouble, asFloat, asInteger, asLong, asString, cast, castAs, equalTo, equalTo, getNodeType, in, in, in, in, isNotNull, isNull, notEqualTo, notEqualToMethods inherited from interface SqmNode
asLoggableText, nodeBuilderMethods inherited from interface SqmSelectableNode
getTupleLengthMethods inherited from interface SqmTypedNode
getExpressible, getNodeJavaTypeMethods inherited from interface SqmVisitableNode
toHqlStringMethods inherited from interface TupleElement
getAlias
-
Constructor Details
-
SqmJpaCriteriaParameterWrapper
public SqmJpaCriteriaParameterWrapper(@Nullable BindableType<T> type, JpaCriteriaParameter<T> jpaCriteriaParameter, int criteriaParameterId, int unnamedParameterId, NodeBuilder criteriaBuilder)
-
-
Method Details
-
copy
- 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
Description copied from interface:SqmParameterIf this represents a named parameter, return that parameter name; otherwise returnnull. -
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
-
getJpaCriteriaParameter
-
getCriteriaParameterId
public int getCriteriaParameterId()The 0-based encounter of aJpaCriteriaParameterinstance in aSqmQuerySource.CRITERIAquery.- See Also:
-
getUnnamedParameterId
public int getUnnamedParameterId()The 0-based encounter of an unnamedJpaCriteriaParameterinstance in aSqmQuerySource.CRITERIAquery. If thegetJpaCriteriaParameter()has a name, returns -1.- See Also:
-
getParameterType
- Specified by:
getParameterTypein interfaceParameter<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
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.
-
copy
Description copied from interface:SqmParameterMake a copy- Specified by:
copyin interfaceSqmParameter<T>
-
accept
Unsupported. Visitation for a criteria parameter should be handled as part ofSemanticQueryWalker.visitJpaCriteriaParameter(JpaCriteriaParameter). This wrapper is intended just for representing unique SqmParameter references for eachJpaCriteriaParameteroccurrence in the SQM tree as part of theQueryParametertoSqmParametertoJdbcParametertransformation. Each occurrence requires a uniqueSqmParameterto make sure we ultimately get the complete set ofJdbcParameterreferences.- Specified by:
acceptin interfaceSqmVisitableNode
-
visitSubSelectableNodes
Description copied from interface:SqmSelectableNodeVisit each of this selectable's direct sub-selectables - used to support JPA'sSelectionmodel (which is really a "selectable", just poorly named and poorly defined- Specified by:
visitSubSelectableNodesin interfaceSqmExpression<T>- Specified by:
visitSubSelectableNodesin interfaceSqmSelectableNode<T>- See Also:
-
appendHqlString
- Specified by:
appendHqlStringin interfaceSqmVisitableNode
-
equals
-
hashCode
-
isCompatible
- Specified by:
isCompatiblein interfaceSqmCacheable
-
cacheHashCode
public int cacheHashCode()- Specified by:
cacheHashCodein interfaceSqmCacheable
-