com.ibm.wbiserver.brules.mgmt.query

Interface LogicalOperatorNode

All Superinterfaces:
QueryNode, java.io.Serializable
All known subinterfaces:
AndNode, NotNode, OrNode

  1. public interface LogicalOperatorNode
  2. extends QueryNode, java.io.Serializable
This interface represents a logical operator (AND, OR, or NOT) in a query.

Field Summary

Modifier and Type Field and Description
  1. static
  2. java.lang.String
COPYRIGHT

Method Summary

Modifier and Type Method and Description
  1. java.util.List<QueryNode>
getSubNodes()
Get the list of sub-nodes of this logical operator node.

Field Detail

  1. static final java.lang.String COPYRIGHT
See Also:

Method Detail

getSubNodes

  1. 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.