public static enum LookupJoinOperators.JoinType extends Enum<LookupJoinOperators.JoinType>
| Enum Constant and Description |
|---|
FULL_OUTER |
INNER |
LOOKUP_OUTER |
PROBE_OUTER |
| Modifier and Type | Method and Description |
|---|---|
static LookupJoinOperators.JoinType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LookupJoinOperators.JoinType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LookupJoinOperators.JoinType INNER
public static final LookupJoinOperators.JoinType PROBE_OUTER
public static final LookupJoinOperators.JoinType LOOKUP_OUTER
public static final LookupJoinOperators.JoinType FULL_OUTER
public static LookupJoinOperators.JoinType[] values()
for (LookupJoinOperators.JoinType c : LookupJoinOperators.JoinType.values()) System.out.println(c);
public static LookupJoinOperators.JoinType 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 © 2012–2019. All rights reserved.