public enum FlinkJoinType extends Enum<FlinkJoinType>
Modifier and Type | Method and Description |
---|---|
boolean |
isLeftOuter() |
boolean |
isOuter() |
boolean |
isRightOuter() |
String |
toString() |
static FlinkJoinType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlinkJoinType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlinkJoinType INNER
public static final FlinkJoinType LEFT
public static final FlinkJoinType RIGHT
public static final FlinkJoinType FULL
public static final FlinkJoinType SEMI
public static final FlinkJoinType ANTI
public static FlinkJoinType[] values()
for (FlinkJoinType c : FlinkJoinType.values()) System.out.println(c);
public static FlinkJoinType 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 isOuter()
public boolean isLeftOuter()
public boolean isRightOuter()
public String toString()
toString
in class Enum<FlinkJoinType>
Copyright © 2014–2023 The Apache Software Foundation. All rights reserved.