public enum PredicateKind extends Enum<PredicateKind>
Predicate extracted from an ON or WHERE
condition.
EQUI — left = right.NON_EQUI — <>, >, >=,
<, <=.RANGE — BETWEEN (and range-style shapes).NULL_CHECK — IS NULL / IS NOT NULL.CALL — a function/expression call comparison whose
operand(s) are not a bare column (e.g.
lower(a.n) = lower(b.n)).COMPLEX — any shape not decomposed into the above; the
sub-tree is preserved as a PredicateOperand, never
dropped.Provisional in join-analysis slice 162 (S1); re-confirmed against
the real EExpressionType values in slice 166 (S5).
| Enum Constant and Description |
|---|
CALL |
COMPLEX |
EQUI |
NON_EQUI |
NULL_CHECK |
RANGE |
| Modifier and Type | Method and Description |
|---|---|
static PredicateKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PredicateKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PredicateKind EQUI
public static final PredicateKind NON_EQUI
public static final PredicateKind RANGE
public static final PredicateKind NULL_CHECK
public static final PredicateKind CALL
public static final PredicateKind COMPLEX
public static PredicateKind[] values()
for (PredicateKind c : PredicateKind.values()) System.out.println(c);
public static PredicateKind 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 null