public interface SqlNode
The implementation class is not required to be thread safe.
Treat this object for read only when you can not control its life cycle.
| Modifier and Type | Method and Description |
|---|---|
<R,P> R |
accept(SqlNodeVisitor<R,P> visitor,
P p)
Accepts the visitor.
|
java.util.List<SqlNode> |
getChildren()
Returns the children list.
|
java.util.List<SqlNode> getChildren()
<R,P> R accept(SqlNodeVisitor<R,P> visitor, P p)
R - the result typeP - the parameter typevisitor - the visitorp - the parameter for the visitorDomaNullPointerException - if visitor is null