public static enum PMMLParser.Operators extends java.lang.Enum<PMMLParser.Operators>
Enum Constant and Description |
---|
equal |
greaterOrEqual |
greaterThan |
isMissing |
lessOrEqual |
lessThan |
Modifier and Type | Method and Description |
---|---|
static PMMLParser.Operators |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PMMLParser.Operators[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PMMLParser.Operators lessOrEqual
public static final PMMLParser.Operators lessThan
public static final PMMLParser.Operators greaterOrEqual
public static final PMMLParser.Operators greaterThan
public static final PMMLParser.Operators equal
public static final PMMLParser.Operators isMissing
public static PMMLParser.Operators[] values()
for (PMMLParser.Operators c : PMMLParser.Operators.values()) System.out.println(c);
public static PMMLParser.Operators valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null