public static enum CompoundPredicate.Operator extends Enum<CompoundPredicate.Operator>
Enum Constant and Description |
---|
and
We perform an and between left and right
|
or
We perform an or between left and right
|
surrogate
Defines a surrogate predicate
|
xor
We perform an xor between left and right
|
Modifier and Type | Method and Description |
---|---|
static CompoundPredicate.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompoundPredicate.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompoundPredicate.Operator or
public static final CompoundPredicate.Operator and
public static final CompoundPredicate.Operator xor
public static final CompoundPredicate.Operator surrogate
public static CompoundPredicate.Operator[] values()
for (CompoundPredicate.Operator c : CompoundPredicate.Operator.values()) System.out.println(c);
public static CompoundPredicate.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.