public static enum SimpleSetPredicate.Operator extends Enum<SimpleSetPredicate.Operator>
Enum Constant and Description |
---|
isIn
Tests that the given field is in the given set of values
|
isNotIn
Tests that the given field is not in the given set of values
|
Modifier and Type | Method and 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.
|
public static final SimpleSetPredicate.Operator isIn
public static final SimpleSetPredicate.Operator isNotIn
public static SimpleSetPredicate.Operator[] values()
for (SimpleSetPredicate.Operator c : SimpleSetPredicate.Operator.values()) System.out.println(c);
public static SimpleSetPredicate.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.