Module datarush.analytics
Class SimplePredicate
- java.lang.Object
-
- com.pervasive.datarush.analytics.decisiontree.Predicate
-
- com.pervasive.datarush.analytics.decisiontree.SimplePredicate
-
public final class SimplePredicate extends Predicate
Corresponds to the PMMLSimplePredicate
element.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SimplePredicate.Operator
Enumeration of allowed values for the "operator" attribute.
-
Constructor Summary
Constructors Constructor Description SimplePredicate()
Create an emptySimplePredicate
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getField()
Returns the value of the "field" attribute.SimplePredicate.Operator
getOperator()
Returns the value of the "operator" attribute.String
getValue()
Returns the value of the "value" attribute.void
setField(String field)
Sets the value of the "field" attribute.void
setOperator(SimplePredicate.Operator operator)
Sets the value of the "operator" attribute.void
setValue(String value)
Sets the value of the "value" attribute.
-
-
-
Method Detail
-
getField
public final String getField()
Returns the value of the "field" attribute.- Returns:
- the value of the "field" attribute.
-
setField
public final void setField(String field)
Sets the value of the "field" attribute.- Parameters:
field
- the value of the "field" attribute.
-
getOperator
public final SimplePredicate.Operator getOperator()
Returns the value of the "operator" attribute.- Returns:
- the value of the "operator" attribute.
-
setOperator
public final void setOperator(SimplePredicate.Operator operator)
Sets the value of the "operator" attribute.- Parameters:
operator
- the value of the "operator" attribute.
-
getValue
public final String getValue()
Returns the value of the "value" attribute.- Returns:
- the value of the "value" attribute.
-
setValue
public final void setValue(String value)
Sets the value of the "value" attribute.- Parameters:
value
- the value of the "value" attribute.
-
-