Interface ExpressionVisitor<R>
- All Known Implementing Classes:
ExpressionDefaultVisitor
@PublicEvolving
public interface ExpressionVisitor<R>
The visitor definition of
Expression.
An expression visitor transforms an expression to instances of R.
Please note that only ResolvedExpressions are listed here. Pure API expression are
handled in visit(Expression).
-
Method Summary
Modifier and TypeMethodDescriptionvisit(CallExpression call) visit(Expression other) visit(FieldReferenceExpression fieldReference) default Rvisit(NestedFieldReferenceExpression nestedFieldReference) visit(TypeLiteralExpression typeLiteral) visit(ValueLiteralExpression valueLiteral)
-
Method Details
-
visit
-
visit
-
visit
-
visit
-
visit
-
visit
-