com.ibm.wbiserver.brules.mgmt.query
Interface LogicalOperatorNode
- All Superinterfaces:
- QueryNode, java.io.Serializable
- All Known Subinterfaces:
- AndNode, NotNode, OrNode
public interface LogicalOperatorNode
- extends QueryNode, java.io.Serializable
This interface represents a logical operator (AND, OR, or NOT) in a query.
Field Summary |
static java.lang.String |
COPYRIGHT
|
Method Summary |
java.util.List<QueryNode> |
getSubNodes()
Get the list of sub-nodes of this logical operator node. |
COPYRIGHT
static final java.lang.String COPYRIGHT
- See Also:
- Constant Field Values
getSubNodes
java.util.List<QueryNode> getSubNodes()
- Get the list of sub-nodes of this logical operator node. There may be one or more sub-nodes
in the list.
- Returns:
- The list of sub-nodes of this logical operator node. The returned
List
object is unmodifiable.