| Modifier and Type | Field and Description |
|---|---|
static SqlNodeList |
EMPTY
An immutable, empty SqlNodeList.
|
EMPTY_ARRAY, pos| Constructor and Description |
|---|
SqlNodeList(Collection<? extends SqlNode> collection,
SqlParserPos pos)
Creates a
SqlNodeList containing the nodes in
list. |
SqlNodeList(SqlParserPos pos)
Creates an empty
SqlNodeList. |
| Modifier and Type | Method and Description |
|---|---|
<R> R |
accept(SqlVisitor<R> visitor)
Accepts a generic visitor.
|
void |
add(SqlNode node) |
SqlNodeList |
clone(SqlParserPos pos)
Clones a SqlNode with a different position.
|
boolean |
equalsDeep(SqlNode node,
boolean fail)
Returns whether this node is structurally equivalent to another node.
|
SqlNode |
get(int n) |
List<SqlNode> |
getList() |
static boolean |
isEmptyList(SqlNode node) |
Iterator<SqlNode> |
iterator() |
SqlNode |
set(int n,
SqlNode node) |
int |
size() |
SqlNode[] |
toArray() |
void |
unparse(SqlWriter writer,
int leftPrec,
int rightPrec)
Writes a SQL representation of this node to a writer.
|
void |
validate(SqlValidator validator,
SqlValidatorScope scope)
Validates this node.
|
void |
validateExpr(SqlValidator validator,
SqlValidatorScope scope)
Validates this node in an expression context.
|
clone, cloneArray, equalDeep, equalDeep, findValidOptions, getKind, getMonotonicity, getParserPosition, isA, toSqlString, toSqlString, toStringpublic static final SqlNodeList EMPTY
public SqlNodeList(SqlParserPos pos)
SqlNodeList.public SqlNodeList(Collection<? extends SqlNode> collection, SqlParserPos pos)
SqlNodeList containing the nodes in
list. The list is copied, but the nodes in it are not.public void add(SqlNode node)
public SqlNodeList clone(SqlParserPos pos)
SqlNodepublic SqlNode get(int n)
public int size()
public void unparse(SqlWriter writer, int leftPrec, int rightPrec)
SqlNodeThe leftPrec and rightPrec parameters give
us enough context to decide whether we need to enclose the expression in
parentheses. For example, we need parentheses around "2 + 3" if preceded
by "5 *". This is because the precedence of the "*" operator is greater
than the precedence of the "+" operator.
The algorithm handles left- and right-associative operators by giving them slightly different left- and right-precedence.
If SqlWriter.isAlwaysUseParentheses() is true, we use
parentheses even when they are not required by the precedence rules.
For the details of this algorithm, see SqlCall.unparse(org.apache.calcite.sql.SqlWriter, int, int).
public void validate(SqlValidator validator, SqlValidatorScope scope)
SqlNodeThe typical implementation of this method will make a callback to the
validator appropriate to the node type and context. The validator has
methods such as SqlValidator.validateLiteral(org.apache.calcite.sql.SqlLiteral) for these purposes.
public <R> R accept(SqlVisitor<R> visitor)
SqlNodeImplementations of this method in subtypes simply call the appropriate
visit method on the
visitor object.
The type parameter R must be consistent with the type
parameter of the visitor.
public boolean equalsDeep(SqlNode node, boolean fail)
SqlNodeequalsDeep in class SqlNodepublic SqlNode[] toArray()
public static boolean isEmptyList(SqlNode node)
public void validateExpr(SqlValidator validator, SqlValidatorScope scope)
SqlNodeUsually, this method does much the same as SqlNode.validate(org.apache.calcite.sql.validate.SqlValidator, org.apache.calcite.sql.validate.SqlValidatorScope), but a
SqlIdentifier can occur in expression and non-expression
contexts.
validateExpr in class SqlNodeCopyright © 2012–2015 The Apache Software Foundation. All rights reserved.