public abstract class AbstractNode extends java.lang.Object implements Node
This abstract node class is the base class for the CQL abstract syntax tree.
Constructor and Description |
---|
AbstractNode() |
Modifier and Type | Method and Description |
---|---|
abstract void |
accept(Visitor visitor)
Try to accept this node by a visitor.
|
int |
compareTo(Node object)
Compare this node to another node.
|
public abstract void accept(Visitor visitor)
Try to accept this node by a visitor.