Class SqmNamedParameter<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>
-
- org.hibernate.query.sqm.tree.expression.SqmNamedParameter<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
public class SqmNamedParameter<T> extends AbstractSqmParameter<T>
Represents a named query parameter in the SQM tree.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SqmNamedParameter(String name, boolean canBeMultiValued, NodeBuilder nodeBuilder)
SqmNamedParameter(String name, boolean canBeMultiValued, SqmExpressible<T> inherentType, NodeBuilder nodeBuilder)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <X> X
accept(SemanticQueryWalker<X> walker)
Accept the walker per visitationvoid
appendHqlString(StringBuilder sb)
String
asLoggableText()
int
compareTo(SqmParameter anotherParameter)
SqmParameter<T>
copy()
Make a copySqmNamedParameter<T>
copy(SqmCopyContext context)
String
getName()
If this represents a named parameter, return that parameter name; otherwise returnnull
.String
toString()
-
Methods inherited from class org.hibernate.query.sqm.tree.expression.AbstractSqmParameter
allowMultiValuedBinding, applyInferableType, getAnticipatedType, getParameterType, getPosition
-
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, 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
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
-
SqmNamedParameter
public SqmNamedParameter(String name, boolean canBeMultiValued, NodeBuilder nodeBuilder)
-
SqmNamedParameter
public SqmNamedParameter(String name, boolean canBeMultiValued, SqmExpressible<T> inherentType, NodeBuilder nodeBuilder)
-
-
Method Detail
-
copy
public SqmNamedParameter<T> copy(SqmCopyContext context)
-
accept
public <X> X accept(SemanticQueryWalker<X> walker)
Description copied from interface:SqmVisitableNode
Accept the walker per visitation
-
asLoggableText
public String asLoggableText()
-
getName
public String getName()
Description copied from interface:SqmParameter
If this represents a named parameter, return that parameter name; otherwise returnnull
.- Specified by:
getName
in interfaceParameter<T>
- Specified by:
getName
in interfaceSqmParameter<T>
- Overrides:
getName
in classAbstractSqmParameter<T>
- Returns:
- The parameter name, or
null
if not a named parameter
-
copy
public SqmParameter<T> copy()
Description copied from interface:SqmParameter
Make a copy
-
appendHqlString
public void appendHqlString(StringBuilder sb)
-
compareTo
public int compareTo(SqmParameter anotherParameter)
-
-