public static enum ComplexPredicate.ConjunctionOp extends java.lang.Enum<ComplexPredicate.ConjunctionOp>
| Enum Constant and Description |
|---|
And
Join Conditions in this predicate using an AND
|
Or
Join Conditions in this predicate using an OR
|
| Modifier and Type | Method and Description |
|---|---|
static ComplexPredicate.ConjunctionOp |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ComplexPredicate.ConjunctionOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComplexPredicate.ConjunctionOp Or
public static final ComplexPredicate.ConjunctionOp And
public static ComplexPredicate.ConjunctionOp[] values()
for (ComplexPredicate.ConjunctionOp c : ComplexPredicate.ConjunctionOp.values()) System.out.println(c);
public static ComplexPredicate.ConjunctionOp 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