public class ParseTreeNode
extends java.lang.Object
Parser
as the
tree representation of the OQL Query. Each node has a link back to the
parent node (null for the root node), and a list of children. Each node
contains the Token
which represents that part of the tree.
heavily inspired by the work of Nissim Karpenstein from Castor JDO.Constructor and Description |
---|
ParseTreeNode() |
ParseTreeNode(ParseTreeNode parent,
Token token)
Creates a new Node with supplied parent and token.
|
ParseTreeNode(Token token)
Creates a new root Node with supplied token.
|
Modifier and Type | Method and Description |
---|---|
void |
addChild(ParseTreeNode child)
Adds a new node as a child of this node.
|
void |
appendComments(java.lang.StringBuilder s) |
void |
appendDebugString(java.lang.StringBuilder s)
appends a String representation of this node including it's children to the given StringBuilder
|
java.lang.String |
debugString()
returns a String representation of this node including it's children
|
ParseTreeNode |
getChild(int index)
Accessor method for individual children of this node.
|
int |
getChildCount()
Accessor method for the number of children of this node.
|
de.ipcon.db.oql.ExpressionResultType |
getExpressionResultType() |
int |
getOperatorPrecedence() |
ParseTreeNode |
getParent()
Accessor method for the parent of this node.
|
java.lang.Class<?> |
getResultClass()
Calculates the resulting Java class of this node, which is used if it is part of the select expression.
|
Token |
getToken()
Accessor method for the token.
|
ValueType |
getType() |
boolean |
hasType() |
boolean |
isLeaf()
Specifies whether this node is a leaf.
|
boolean |
isRoot()
Specifies whether this node is the root of a tree.
|
ParseTreeNode |
removeChild(int index) |
void |
renderSQL(java.lang.StringBuilder s,
java.lang.Object[] oqlArgs,
java.util.List sqlArgs)
Renders this node into a StringBuilder as SQL statement, copying
arguments from oqlArgs to sqlArgs if needed.
|
void |
setOwnType() |
void |
setParent(ParseTreeNode parent)
Sets the parent of this node.
|
void |
setToken(Token token)
Changes the Token data in this node.
|
void |
setType(CBOAttributeTypeI aType) |
void |
setType(java.lang.String typeName,
SchemaI schema) |
void |
setType(ValueType type) |
void |
setTypeFromChildren() |
void |
setTypeFromParent(ValueType type) |
java.lang.String |
toString()
returns a String representation of just this node.
|
public ParseTreeNode(ParseTreeNode parent, Token token)
parent
- The parent of this node (null for root)token
- The token data in this nodepublic ParseTreeNode(Token token)
token
- The token data in this nodepublic ParseTreeNode()
public java.lang.String toString()
toString
in class java.lang.Object
public java.lang.String debugString()
public void appendDebugString(java.lang.StringBuilder s)
public void appendComments(java.lang.StringBuilder s)
public void setParent(ParseTreeNode parent)
parent
- The new parent.public void addChild(ParseTreeNode child)
child
- The new childpublic ParseTreeNode removeChild(int index)
public boolean isRoot()
public boolean isLeaf()
public ParseTreeNode getParent()
public ParseTreeNode getChild(int index)
index
- the index of the child to retrieve.public int getChildCount()
public Token getToken()
public void setToken(Token token)
token
- the Token data in this node.public void renderSQL(java.lang.StringBuilder s, java.lang.Object[] oqlArgs, java.util.List sqlArgs)
public de.ipcon.db.oql.ExpressionResultType getExpressionResultType()
public java.lang.Class<?> getResultClass()
type
is null.public void setType(ValueType type)
public ValueType getType()
public boolean hasType()
public void setType(java.lang.String typeName, SchemaI schema)
public void setType(CBOAttributeTypeI aType)
public void setOwnType()
public void setTypeFromChildren()
public void setTypeFromParent(ValueType type)
public int getOperatorPrecedence()
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.