Class ColumnExpNode
- java.lang.Object
-
- org.linuxforhealth.fhir.database.utils.query.node.ColumnExpNode
-
-
Field Summary
Fields Modifier and Type Field Description (package private) java.lang.String
columnName
(package private) java.lang.String
tableAlias
-
Constructor Summary
Constructors Constructor Description ColumnExpNode(java.lang.String columnName)
Public constructorColumnExpNode(java.lang.String tableAlias, java.lang.String columnName)
Public constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isOperand()
Is this expression node an operandvoid
popOperands(java.util.Stack<ExpNode> stack)
Read the operands from the stackint
precedence()
Precedence of this expression node.java.lang.String
toString()
<T> T
visit(ExpNodeVisitor<T> visitor)
Generic evaluation visitor-
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.linuxforhealth.fhir.database.utils.query.node.ExpNode
isLeftParen, isOperator, isRightParen
-
-
-
-
Method Detail
-
visit
public <T> T visit(ExpNodeVisitor<T> visitor)
Description copied from interface:ExpNode
Generic evaluation visitor
-
precedence
public int precedence()
Description copied from interface:ExpNode
Precedence of this expression node. Used to parse the expression into the correct tree. We use 0 to represent the highest precedence- Specified by:
precedence
in interfaceExpNode
- Returns:
-
popOperands
public void popOperands(java.util.Stack<ExpNode> stack)
Description copied from interface:ExpNode
Read the operands from the stack- Specified by:
popOperands
in interfaceExpNode
-
isOperand
public boolean isOperand()
Description copied from interface:ExpNode
Is this expression node an operand
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-