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 theCompoundPredicatePMML element.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCompoundPredicate.OperatorEnumeration 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.OperatorgetOperator()Returns the value of the "booleanOperator" attribute.voidsetChildren(List<Predicate> children)Sets the child predicate elements.voidsetOperator(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.
-
-