Record Class ExpressionVisitorContext
java.lang.Object
java.lang.Record
io.micronaut.expressions.parser.compilation.ExpressionVisitorContext
- Record Components:
evaluationContext- expression compilation contextvisitorContext- visitor context
@Internal
public record ExpressionVisitorContext(ExpressionEvaluationContext evaluationContext, VisitorContext visitorContext)
extends Record
Context class used for compiling expressions.
- Since:
- 4.0.0
- Author:
- Sergey Gavrilov
-
Constructor Summary
ConstructorsConstructorDescriptionExpressionVisitorContext(ExpressionEvaluationContext evaluationContext, VisitorContext visitorContext) Creates an instance of aExpressionVisitorContextrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.Returns the value of theevaluationContextrecord component.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.Returns the value of thevisitorContextrecord component.
-
Constructor Details
-
ExpressionVisitorContext
public ExpressionVisitorContext(ExpressionEvaluationContext evaluationContext, VisitorContext visitorContext) Creates an instance of aExpressionVisitorContextrecord class.- Parameters:
evaluationContext- the value for theevaluationContextrecord componentvisitorContext- the value for thevisitorContextrecord component
-
-
Method Details
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
evaluationContext
Returns the value of theevaluationContextrecord component.- Returns:
- the value of the
evaluationContextrecord component
-
visitorContext
Returns the value of thevisitorContextrecord component.- Returns:
- the value of the
visitorContextrecord component
-