com.akiban.sql.parser
Class XMLBinaryOperatorNode
java.lang.Object
com.akiban.sql.parser.QueryTreeNode
com.akiban.sql.parser.ValueNode
com.akiban.sql.parser.BinaryOperatorNode
com.akiban.sql.parser.XMLBinaryOperatorNode
- All Implemented Interfaces:
- Visitable
public class XMLBinaryOperatorNode
- extends BinaryOperatorNode
A BinaryOperatorNode represents a built-in binary operator as defined by
the ANSI/ISO SQL standard. This covers operators like +, -, *, /, =, <, etc.
Java operators are not represented here: the JSQL language allows Java
methods to be called from expressions, but not Java operators.
|
Method Summary |
void |
init(Object leftOperand,
Object rightOperand,
Object opType)
Initializer for a BinaryOperatorNode |
| Methods inherited from class com.akiban.sql.parser.BinaryOperatorNode |
copyFrom, getLeftOperand, getMethodName, getOperator, getRightOperand, init, init, isConstantExpression, isEquivalent, printSubNodes, setLeftOperand, setLeftRightInterfaceType, setRightOperand, toString |
| Methods inherited from class com.akiban.sql.parser.ValueNode |
getColumnName, getSchemaName, getSourceResultColumn, getTableName, getType, getTypeId, init, isBinaryEqualsOperatorNode, isBooleanFalse, isBooleanTrue, isInListProbeNode, isParameterNode, isRelationalOperator, isSameNodeType, setNullability, setType |
| Methods inherited from class com.akiban.sql.parser.QueryTreeNode |
accept, convertDefaultNode, debugFlush, debugPrint, formatNodeString, getBeginOffset, getDebugOutput, getEndOffset, getNodeFactory, getNodeType, getNullNode, getParserContext, getStatementType, getUserData, init, init, init, init, init, init, init, init, init, init, isInstanceOf, makeTableName, makeTableName, nodeHeader, printLabel, setBeginOffset, setDebugOutput, setEndOffset, setNodeType, setParserContext, setUserData, stackPrint, treePrint, treePrint, treePrint |
XMLBinaryOperatorNode
public XMLBinaryOperatorNode()
init
public void init(Object leftOperand,
Object rightOperand,
Object opType)
- Initializer for a BinaryOperatorNode
- Overrides:
init in class QueryTreeNode
- Parameters:
leftOperand - The left operand of the noderightOperand - The right operand of the nodeopType - An Integer holding the operatorType
for this operator.
Copyright © 2013 Akiban Technologies, Inc. All rights reserved.