Module datarush.analytics
Class CompoundPredicate
- java.lang.Object
-
- com.pervasive.datarush.analytics.decisiontree.Predicate
-
- com.pervasive.datarush.analytics.decisiontree.CompoundPredicate
-
public final class CompoundPredicate extends Predicate
Corresponds to theCompoundPredicate
PMML element.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CompoundPredicate.Operator
Enumeration of allowed values for the "booleanOperator" attribute.
-
Constructor Summary
Constructors Constructor Description CompoundPredicate()
Creates an empty CompoundPredicate element.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Predicate>
getChildren()
Returns the child predicate elements.CompoundPredicate.Operator
getOperator()
Returns the value of the "booleanOperator" attribute.void
setChildren(List<Predicate> children)
Sets the child predicate elements.void
setOperator(CompoundPredicate.Operator operator)
Sets the value of the "booleanOperator" attribute.
-
-
-
Method Detail
-
getOperator
public final CompoundPredicate.Operator getOperator()
Returns the value of the "booleanOperator" attribute.- Returns:
- the value of the "booleanOperator" attribute.
-
setOperator
public final void setOperator(CompoundPredicate.Operator operator)
Sets the value of the "booleanOperator" attribute.- Parameters:
operator
- the value of the "booleanOperator" attribute.
-
getChildren
public final List<Predicate> getChildren()
Returns the child predicate elements.- Returns:
- the child predicate elements.
-
-