public interface AndNode extends LogicalOperatorNode, java.io.Serializable
AndNode
is be the set of all
objects whose properties match all of the queries specified by all of the
sub-nodes of the AndNode
.
Here is an example:
// Find business rule groups where the value of property "Department" is "Marketing" and // the value of property "Region" is "Midwest". PropertyQueryNode leftNode = QueryNodeFactory.createPropertyQueryNode("Department", QueryOperator.EQUAL, "Marketing"); PropertyQueryNode rightNode = QueryNodeFactory.createPropertyQueryNode("Region", QueryOperator.EQUAL, "Midwest"); AndNode rootNode = QueryNodeFactory.createAndNode(leftNode, rightNode);
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
COPYRIGHT |
getSubNodes
static final java.lang.String COPYRIGHT