Package eu.clarin.sru.server.fcs.parser
Class ExpressionOr
- java.lang.Object
-
- eu.clarin.sru.server.fcs.parser.QueryNode
-
- eu.clarin.sru.server.fcs.parser.ExpressionOr
-
public class ExpressionOr extends QueryNode
A FCS-QL expression tree OR expression node.
-
-
Field Summary
-
Fields inherited from class eu.clarin.sru.server.fcs.parser.QueryNode
children, nodeType, OCCURS_UNBOUNDED, parent
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(QueryVisitor visitor)
List<QueryNode>
getOperands()
Get the OR expression operands-
Methods inherited from class eu.clarin.sru.server.fcs.parser.QueryNode
getChild, getChild, getChildCount, getChildren, getFirstChild, getFirstChild, getLastChild, getNodeType, getParent, hasNodeType, setParent, toString
-
-
-
-
Method Detail
-
getOperands
public List<QueryNode> getOperands()
Get the OR expression operands- Returns:
- a list of expressions
-
accept
public void accept(QueryVisitor visitor)
-
-