Module datarush.analytics
Enum Class SimplePredicate.Operator
java.lang.Object
java.lang.Enum<SimplePredicate.Operator>
com.pervasive.datarush.analytics.decisiontree.SimplePredicate.Operator
- All Implemented Interfaces:
Serializable,Comparable<SimplePredicate.Operator>,java.lang.constant.Constable
- Enclosing class:
- SimplePredicate
Enumeration of allowed values for the "operator" attribute.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionTests that the given field equals the given valueTests that the given field is greater than or equal to the given valueTests that the given field is greater than the given valueTests that the given field has a missing valueTests that the given field does not have a missing valueTests that the given field is less than or equal to the given valueTests that the given field is less than the given valueTests that the given field is not equal to the given value -
Method Summary
Modifier and TypeMethodDescriptionstatic SimplePredicate.OperatorReturns the enum constant of this class with the specified name.static SimplePredicate.Operator[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
equal
Tests that the given field equals the given value -
notEqual
Tests that the given field is not equal to the given value -
lessThan
Tests that the given field is less than the given value -
lessOrEqual
Tests that the given field is less than or equal to the given value -
greaterThan
Tests that the given field is greater than the given value -
greaterOrEqual
Tests that the given field is greater than or equal to the given value -
isMissing
Tests that the given field has a missing value -
isNotMissing
Tests that the given field does not have a missing value
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-