public static enum HashJoinProbe.ProbeState extends Enum<HashJoinProbe.ProbeState>
| Enum Constant and Description |
|---|
DONE |
PROBE_PROJECT |
PROJECT_RIGHT |
| Modifier and Type | Method and Description |
|---|---|
static HashJoinProbe.ProbeState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HashJoinProbe.ProbeState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HashJoinProbe.ProbeState PROBE_PROJECT
public static final HashJoinProbe.ProbeState PROJECT_RIGHT
public static final HashJoinProbe.ProbeState DONE
public static HashJoinProbe.ProbeState[] values()
for (HashJoinProbe.ProbeState c : HashJoinProbe.ProbeState.values()) System.out.println(c);
public static HashJoinProbe.ProbeState 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 © 2021 The Apache Software Foundation. All rights reserved.