Class ExistsExpNode
- java.lang.Object
 - 
- com.ibm.fhir.database.utils.query.node.OperatorNode
 - 
- com.ibm.fhir.database.utils.query.node.UnaryExpNode
 - 
- com.ibm.fhir.database.utils.query.node.ExistsExpNode
 
 
 
 
- 
- All Implemented Interfaces:
 ExpNode
public class ExistsExpNode extends UnaryExpNode
Represents an EXISTS ( 
- 
- 
Constructor Summary
Constructors Constructor Description ExistsExpNode(ExpNode sub)Public constructor 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisOperand()Is this expression node an operandintprecedence()Precedence of this expression node.<T> Tvisit(ExpNodeVisitor<T> visitor)Generic evaluation visitor- 
Methods inherited from class com.ibm.fhir.database.utils.query.node.UnaryExpNode
getExpr, popOperands, setExpr, toString 
- 
Methods inherited from class com.ibm.fhir.database.utils.query.node.OperatorNode
isOperator 
- 
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, wait, wait, wait 
- 
Methods inherited from interface com.ibm.fhir.database.utils.query.node.ExpNode
isLeftParen, isRightParen 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
ExistsExpNode
public ExistsExpNode(ExpNode sub)
Public constructor- Parameters:
 sub-
 
 - 
 
- 
Method Detail
- 
visit
public <T> T visit(ExpNodeVisitor<T> visitor)
Description copied from interface:ExpNodeGeneric evaluation visitor- Returns:
 
 
- 
precedence
public int precedence()
Description copied from interface:ExpNodePrecedence of this expression node. Used to parse the expression into the correct tree. We use 0 to represent the highest precedence- Returns:
 
 
- 
isOperand
public boolean isOperand()
Description copied from interface:ExpNodeIs this expression node an operand- Returns:
 
 
 - 
 
 -