Interface QueryOperand.Visitor

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 Type
    Method
    Description
    void
    Visits a parameter operand.
    void
    Visits a property operand.
  • Method Details

    • visit

      void visit(QueryOperand.Param param)
      Visits a parameter operand.
      Parameters:
      param - the parameter operand to visit
    • visit

      void visit(QueryOperand.Prop prop)
      Visits a property operand.
      Parameters:
      prop - the property operand to visit