public interface PropertyIsDefinedQueryNode extends QueryNode, java.io.Serializable
// Find business rule groups that have property "Department" defined to be some // value. PropertyIsDefinedQueryNode node = QueryNodeFactory.createPropertyIsDefinedQueryNode("Department");
A PropertyIsDefinedQueryNode
can be used by itself to form a query, if the query
is using a single property, or it may be combined with other QueryNode
objects
using the logical operator nodes AndNode
, OrNode
, and
NotNode
to form more complicated queries.
Note that the property name specified for the PropertyIsDefinedQueryNode
cannot make use of any wildcard characters such as '%' or '_'. Only an exact match on the
property name is allowed.
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
COPYRIGHT |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getPropertyName()
Get the name of the property that is to be queried by this node.
|
static final java.lang.String COPYRIGHT