public enum HashJoinType extends Enum<HashJoinType>
Enum Constant and Description |
---|
ANTI |
BUILD_LEFT_ANTI |
BUILD_LEFT_SEMI |
BUILD_OUTER |
FULL_OUTER |
INNER |
PROBE_OUTER |
SEMI |
Modifier and Type | Method and Description |
---|---|
boolean |
buildLeftSemiOrAnti() |
boolean |
isBuildOuter() |
boolean |
isProbeOuter() |
boolean |
leftSemiOrAnti() |
boolean |
needSetProbed() |
static HashJoinType |
of(boolean leftIsBuild,
boolean leftOuter,
boolean rightOuter) |
static HashJoinType |
of(boolean leftIsBuild,
boolean leftOuter,
boolean rightOuter,
boolean isSemi,
boolean isAnti) |
static HashJoinType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HashJoinType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HashJoinType INNER
public static final HashJoinType BUILD_OUTER
public static final HashJoinType PROBE_OUTER
public static final HashJoinType FULL_OUTER
public static final HashJoinType SEMI
public static final HashJoinType ANTI
public static final HashJoinType BUILD_LEFT_SEMI
public static final HashJoinType BUILD_LEFT_ANTI
public static HashJoinType[] values()
for (HashJoinType c : HashJoinType.values()) System.out.println(c);
public static HashJoinType 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 nullpublic boolean isBuildOuter()
public boolean isProbeOuter()
public boolean leftSemiOrAnti()
public boolean buildLeftSemiOrAnti()
public boolean needSetProbed()
public static HashJoinType of(boolean leftIsBuild, boolean leftOuter, boolean rightOuter)
public static HashJoinType of(boolean leftIsBuild, boolean leftOuter, boolean rightOuter, boolean isSemi, boolean isAnti)
Copyright © 2014–2024 The Apache Software Foundation. All rights reserved.