public static enum SimplePredicate.Operator extends Enum<SimplePredicate.Operator>
Enum Constant and Description |
---|
equal
Tests that the given field equals the given value
|
greaterOrEqual
Tests that the given field is greater than or equal to the given value
|
greaterThan
Tests that the given field is greater than 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
|
lessOrEqual
Tests that the given field is less than or equal to the given value
|
lessThan
Tests that the given field is less than the given value
|
notEqual
Tests that the given field is not equal to the given value
|
Modifier and Type | Method and Description |
---|---|
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 notEqual
public static final SimplePredicate.Operator lessThan
public static final SimplePredicate.Operator lessOrEqual
public static final SimplePredicate.Operator greaterThan
public static final SimplePredicate.Operator greaterOrEqual
public static final SimplePredicate.Operator isMissing
public static final SimplePredicate.Operator isNotMissing
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 nullCopyright © 2016 Actian Corporation. All rights reserved.