public static enum SimplePredicate.Operator extends Enum<SimplePredicate.Operator> implements StringValue<SimplePredicate.Operator>
| Enum Constant and Description |
|---|
EQUAL |
GREATER_OR_EQUAL |
GREATER_THAN |
IS_MISSING |
IS_NOT_MISSING |
LESS_OR_EQUAL |
LESS_THAN |
NOT_EQUAL |
| Modifier and Type | Method and Description |
|---|---|
static SimplePredicate.Operator |
fromValue(String v) |
String |
toString() |
String |
value() |
static SimplePredicate.Operator |
valueOf(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.
|
public static final SimplePredicate.Operator EQUAL
public static final SimplePredicate.Operator NOT_EQUAL
public static final SimplePredicate.Operator LESS_THAN
public static final SimplePredicate.Operator LESS_OR_EQUAL
public static final SimplePredicate.Operator GREATER_THAN
public static final SimplePredicate.Operator GREATER_OR_EQUAL
public static final SimplePredicate.Operator IS_MISSING
public static final SimplePredicate.Operator IS_NOT_MISSING
public static SimplePredicate.Operator[] values()
for (SimplePredicate.Operator c : SimplePredicate.Operator.values()) System.out.println(c);
public static SimplePredicate.Operator valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
value in interface StringValue<SimplePredicate.Operator>public static SimplePredicate.Operator fromValue(String v)
public String toString()
toString in class Enum<SimplePredicate.Operator>Copyright © 2019 University of Tartu. All rights reserved.