Class LikeExpNode
- java.lang.Object
- 
- com.ibm.fhir.database.utils.query.node.OperatorNode
- 
- com.ibm.fhir.database.utils.query.node.BinaryExpNode
- 
- com.ibm.fhir.database.utils.query.node.LikeExpNode
 
 
 
- 
- All Implemented Interfaces:
- ExpNode
 
 public class LikeExpNode extends BinaryExpNode Represents a {col} LIKE {string-exp} | {bind-var} in a SQL predicate expression
- 
- 
Constructor SummaryConstructors Constructor Description LikeExpNode()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description intprecedence()Precedence of this expression node.<T> Tvisit(ExpNodeVisitor<T> visitor)Generic evaluation visitor- 
Methods inherited from class com.ibm.fhir.database.utils.query.node.BinaryExpNodegetLeft, getRight, popOperands, setLeft, setRight, toString
 - 
Methods inherited from class com.ibm.fhir.database.utils.query.node.OperatorNodeisOperator
 - 
Methods inherited from class java.lang.Objectclone, equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface com.ibm.fhir.database.utils.query.node.ExpNodeisLeftParen, isOperand, isRightParen
 
- 
 
- 
- 
- 
Method Detail- 
visitpublic <T> T visit(ExpNodeVisitor<T> visitor) Description copied from interface:ExpNodeGeneric evaluation visitor- Returns:
 
 - 
precedencepublic 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:
 
 
- 
 
-