Class AbstractSqmParameter<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.AbstractSqmParameter<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>,SqmExpression<T>,SqmParameter<T>,SqmSelectableNode<T>,SqmExpressibleAccessor<T>,SqmNode,SqmTypedNode<T>,SqmVisitableNode
- Direct Known Subclasses:
SqmNamedParameter,SqmPositionalParameter
public abstract class AbstractSqmParameter<T> extends AbstractSqmExpression<T> implements SqmParameter<T>
Common support for SqmParameter impls- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbstractSqmParameter(boolean canBeMultiValued, SqmExpressible<T> inherentType, NodeBuilder nodeBuilder)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanallowMultiValuedBinding()Can a collection/array of values be bound to this parameter?voidapplyInferableType(SqmExpressible<?> type)Used to apply type information based on the expression's usage within the query.BindableType<T>getAnticipatedType()Based on the context it is declared, what is the anticipated type for bind values?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.-
Methods inherited from class org.hibernate.query.sqm.tree.expression.AbstractSqmExpression
alias, as, asBigDecimal, asBigInteger, asDouble, asFloat, asInteger, asLong, asString, getJavaTypeDescriptor, in, in, in, in, internalApplyInferableType, 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, equals, finalize, getClass, hashCode, 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
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
compareTo, copy, copy, getNodeType
-
Methods inherited from interface org.hibernate.query.sqm.tree.SqmTypedNode
getExpressible, getNodeJavaType
-
Methods inherited from interface org.hibernate.query.sqm.tree.SqmVisitableNode
accept, appendHqlString, toHqlString
-
Methods inherited from interface jakarta.persistence.TupleElement
getAlias
-
-
-
-
Constructor Detail
-
AbstractSqmParameter
public AbstractSqmParameter(boolean canBeMultiValued, SqmExpressible<T> inherentType, NodeBuilder nodeBuilder)
-
-
Method Detail
-
applyInferableType
public void applyInferableType(SqmExpressible<?> type)
Description copied from interface:SqmExpressionUsed to apply type information based on the expression's usage within the query.- Specified by:
applyInferableTypein interfaceSqmExpression<T>- Overrides:
applyInferableTypein classAbstractSqmExpression<T>
-
getName
public String getName()
Description copied from interface:SqmParameterIf this represents a named parameter, return that parameter name; otherwise returnnull.
-
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
-
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.
-
getParameterType
public Class<T> getParameterType()
- Specified by:
getParameterTypein interfaceParameter<T>
-
-