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