public static interface SqlBasicVisitor.ArgHandler<R>
| Modifier and Type | Method and Description |
|---|---|
R |
result()
Returns the result of visiting all children of a call to an operator,
then the call itself.
|
R |
visitChild(SqlVisitor<R> visitor,
SqlNode expr,
int i,
SqlNode operand)
Visits a particular operand of a call, using a given visitor.
|
R result()
Typically the result will be the result of the last child visited, or
(if R is Boolean) whether all children were visited
successfully.
R visitChild(SqlVisitor<R> visitor, SqlNode expr, int i, SqlNode operand)
Copyright © 2012–2015 The Apache Software Foundation. All rights reserved.