Class BoundPathParameterExpression<T>
java.lang.Object
io.micronaut.data.model.jpa.criteria.impl.expression.AbstractExpression<T>
io.micronaut.data.model.jpa.criteria.impl.IParameterExpression<T>
io.micronaut.data.model.jpa.criteria.impl.BoundPathParameterExpression<T>
- Type Parameters:
T- The parameter type
- All Implemented Interfaces:
IExpression<T>, ISelection<T>, BindingParameter, jakarta.persistence.criteria.Expression<T>, jakarta.persistence.criteria.ParameterExpression<T>, jakarta.persistence.criteria.Selection<T>, jakarta.persistence.Parameter<T>, jakarta.persistence.TupleElement<T>
The parameter value with a bound path.
- Since:
- 4.13
- Author:
- Denis Stepanov
-
Nested Class Summary
Nested classes/interfaces inherited from interface BindingParameter
BindingParameter.BindingContext -
Constructor Summary
ConstructorsConstructorDescriptionBoundPathParameterExpression(IParameterExpression<T> originalParameterExpression, PersistentPropertyPath propertyPath) -
Method Summary
Modifier and TypeMethodDescriptionbind(BindingParameter.BindingContext bindingContext) Bind the parameter.Methods inherited from class IParameterExpression
getName, getParameterType, getPosition, toString, visitExpressionMethods inherited from class AbstractExpression
getExpressionType, getJavaTypeMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface jakarta.persistence.criteria.Expression
cast, equalTo, equalTo, notEqualTo, notEqualToMethods inherited from interface IExpression
as, getExpressionType, getJavaType, in, in, in, in, isNotNull, isNull, visitSelectionMethods inherited from interface ISelection
alias, getAlias, getCompoundSelectionItems, isCompoundSelection
-
Constructor Details
-
BoundPathParameterExpression
public BoundPathParameterExpression(IParameterExpression<T> originalParameterExpression, PersistentPropertyPath propertyPath)
-
-
Method Details
-
bind
Description copied from interface:BindingParameterBind the parameter.- Parameters:
bindingContext- The binding context- Returns:
- The query binding
-