public enum EffectType extends Enum<EffectType>
| Enum Constant and Description |
|---|
AGGREGATION
Aggregation causes granularity change.
|
AMBIGUOUS
Dynamic SQL or ambiguous path.
|
CONDITIONAL
Conditional expression.
|
CONTROL_DEPENDENT
Affected by control flow condition.
|
EXACT_COPY
Direct pass-through, value unchanged.
|
PARTIAL_COPY
Multiple sources synthesized.
|
TYPE_CAST
Type cast.
|
WEAK_COPY
Function/expression transformation.
|
WINDOW_FUNCTION
Window function transformation.
|
| Modifier and Type | Method and Description |
|---|---|
static EffectType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EffectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EffectType EXACT_COPY
public static final EffectType WEAK_COPY
public static final EffectType AGGREGATION
public static final EffectType PARTIAL_COPY
public static final EffectType CONTROL_DEPENDENT
public static final EffectType AMBIGUOUS
public static final EffectType WINDOW_FUNCTION
public static final EffectType TYPE_CAST
public static final EffectType CONDITIONAL
public static EffectType[] values()
for (EffectType c : EffectType.values()) System.out.println(c);
public static EffectType 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