Interface ExpressionVisitor
public interface ExpressionVisitor
This interface defines the necessary callback to recursively visit all
GroupingExpression
objects in a GroupingOperation
. It is used by the GroupingValidator
to ensure that all
referenced attributes are valid for the cluster being queried.- Author:
- Simon Thoresen Hult
-
Method Summary
Modifier and TypeMethodDescriptionvoid
This method is called for everyGroupingExpression
object in the targetedGroupingOperation
.
-
Method Details
-
visitExpression
This method is called for everyGroupingExpression
object in the targetedGroupingOperation
.- Parameters:
exp
- the expression being visited.
-