Uses of Class
com.pervasive.datarush.analytics.decisiontree.Predicate
-
Packages that use Predicate Package Description com.pervasive.datarush.analytics.decisiontree Provides PMML model classes for decision trees. -
-
Uses of Predicate in com.pervasive.datarush.analytics.decisiontree
Subclasses of Predicate in com.pervasive.datarush.analytics.decisiontree Modifier and Type Class Description class
CompoundPredicate
Corresponds to theCompoundPredicate
PMML element.class
ConstantPredicate
Corresponds to theTrue
andFalse
PMML elements.class
SimplePredicate
Corresponds to the PMMLSimplePredicate
element.class
SimpleSetPredicate
Corresponds to the PMMLSimpleSetPredicate
element.Methods in com.pervasive.datarush.analytics.decisiontree that return Predicate Modifier and Type Method Description Predicate
TreeNode. getPredicate()
Returns the predicate element associate with this node.Methods in com.pervasive.datarush.analytics.decisiontree that return types with arguments of type Predicate Modifier and Type Method Description List<Predicate>
CompoundPredicate. getChildren()
Returns the child predicate elements.Methods in com.pervasive.datarush.analytics.decisiontree with parameters of type Predicate Modifier and Type Method Description void
TreeNode. setPredicate(Predicate predicate)
Sets the predicate element associate with this node.Method parameters in com.pervasive.datarush.analytics.decisiontree with type arguments of type Predicate Modifier and Type Method Description void
CompoundPredicate. setChildren(List<Predicate> children)
Sets the child predicate elements.
-