Interface ExpressionVisitor
-
public interface ExpressionVisitor
This interface defines the necessary callback to recursively visit allGroupingExpression
objects in aGroupingOperation
. It is used by theGroupingValidator
to ensure that all referenced attributes are valid for the cluster being queried.- Author:
- Simon Thoresen Hult
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
visitExpression(GroupingExpression exp)
This method is called for everyGroupingExpression
object in the targetedGroupingOperation
.
-
-
-
Method Detail
-
visitExpression
void visitExpression(GroupingExpression exp)
This method is called for everyGroupingExpression
object in the targetedGroupingOperation
.- Parameters:
exp
- the expression being visited.
-
-