- Enclosing interface:
- QueryOperand
public static interface QueryOperand.Visitor
A visitor interface for
QueryOperand implementations.
This interface follows the visitor pattern to allow operations on different types of query operands without modifying their structure.
-
Method Summary
Modifier and TypeMethodDescriptionvoidvisit(QueryOperand.Param param) Visits a parameter operand.voidvisit(QueryOperand.Prop prop) Visits a property operand.
-
Method Details
-
visit
Visits a parameter operand.- Parameters:
param- the parameter operand to visit
-
visit
Visits a property operand.- Parameters:
prop- the property operand to visit
-