Module datarush.analytics
Enum SimpleSetPredicate.Operator
- java.lang.Object
-
- java.lang.Enum<SimpleSetPredicate.Operator>
-
- com.pervasive.datarush.analytics.decisiontree.SimpleSetPredicate.Operator
-
- All Implemented Interfaces:
Serializable
,Comparable<SimpleSetPredicate.Operator>
- Enclosing class:
- SimpleSetPredicate
public static enum SimpleSetPredicate.Operator extends Enum<SimpleSetPredicate.Operator>
Enumeration of allowed values for the "booleanOperator" attribute.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SimpleSetPredicate.Operator
valueOf(String name)
Returns the enum constant of this type with the specified name.static SimpleSetPredicate.Operator[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
isIn
public static final SimpleSetPredicate.Operator isIn
Tests that the given field is in the given set of values
-
isNotIn
public static final SimpleSetPredicate.Operator isNotIn
Tests that the given field is not in the given set of values
-
-
Method Detail
-
values
public static SimpleSetPredicate.Operator[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SimpleSetPredicate.Operator c : SimpleSetPredicate.Operator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SimpleSetPredicate.Operator valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
-