Package org.dmg.pmml
Enum SimplePredicate.Operator
- java.lang.Object
-
- java.lang.Enum<SimplePredicate.Operator>
-
- org.dmg.pmml.SimplePredicate.Operator
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SimplePredicate.Operator>,StringValue<SimplePredicate.Operator>
- Enclosing class:
- SimplePredicate
public static enum SimplePredicate.Operator extends java.lang.Enum<SimplePredicate.Operator> implements StringValue<SimplePredicate.Operator>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EQUALGREATER_OR_EQUALGREATER_THANIS_MISSINGIS_NOT_MISSINGLESS_OR_EQUALLESS_THANNOT_EQUAL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SimplePredicate.OperatorfromValue(java.lang.String v)java.lang.StringtoString()java.lang.Stringvalue()static SimplePredicate.OperatorvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SimplePredicate.Operator[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQUAL
public static final SimplePredicate.Operator EQUAL
-
NOT_EQUAL
public static final SimplePredicate.Operator NOT_EQUAL
-
LESS_THAN
public static final SimplePredicate.Operator LESS_THAN
-
LESS_OR_EQUAL
public static final SimplePredicate.Operator LESS_OR_EQUAL
-
GREATER_THAN
public static final SimplePredicate.Operator GREATER_THAN
-
GREATER_OR_EQUAL
public static final SimplePredicate.Operator GREATER_OR_EQUAL
-
IS_MISSING
public static final SimplePredicate.Operator IS_MISSING
-
IS_NOT_MISSING
public static final SimplePredicate.Operator IS_NOT_MISSING
-
-
Method Detail
-
values
public static SimplePredicate.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 (SimplePredicate.Operator c : SimplePredicate.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 SimplePredicate.Operator valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
value
public java.lang.String value()
- Specified by:
valuein interfaceStringValue<SimplePredicate.Operator>
-
fromValue
public static SimplePredicate.Operator fromValue(java.lang.String v)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<SimplePredicate.Operator>
-
-