com.ibm.wbiserver.brules.mgmt.query
Interface NotNode
All Superinterfaces:
LogicalOperatorNode, QueryNode, java.io.Serializable
- public interface NotNode
- extends LogicalOperatorNode, java.io.Serializable
performQuery
method on a NotNode
is the set of all business rule
groups whose properties do not match the query specified by the sub-node of the
NotNode
.
Here is an example:
// Find all business rule groups where the value of property "Region" is not equal to // "East". PropertyQueryNode propertyNode = QueryNodeFactory.createPropertyQueryNode("Region", QueryOperator.EQUAL, "East"); NotNode notNode = QueryNodeFactory.createNotNode(propertyNode);Note that this is the same as doing the following:
PropertyQueryNode propertyNode = QueryNodeFactory.createPropertyQueryNode("Region", QueryOperator.NOT_EQUAL, "East");
Field Summary
Modifier and Type | Field and Description |
---|---|
|
COPYRIGHT
|
Method Summary
Methods inherited from interface com.ibm.wbiserver.brules.mgmt.query.LogicalOperatorNode |
---|
getSubNodes |
Field Detail
COPYRIGHT
- static final java.lang.String COPYRIGHT
See Also: