Enum JoinType
- java.lang.Object
-
- java.lang.Enum<JoinType>
-
- org.apache.flink.api.java.operators.join.JoinType
-
- All Implemented Interfaces:
Serializable,Comparable<JoinType>
@Deprecated @Public public enum JoinType extends Enum<JoinType>
Deprecated.All Flink DataSet APIs are deprecated since Flink 1.18 and will be removed in a future Flink major version. You can still build your application in DataSet, but you should move to either the DataStream and/or Table API.Join types.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FULL_OUTERDeprecated.INNERDeprecated.LEFT_OUTERDeprecated.RIGHT_OUTERDeprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanisOuter()Deprecated.static JoinTypevalueOf(String name)Deprecated.Returns the enum constant of this type with the specified name.static JoinType[]values()Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Method Detail
-
values
public static JoinType[] values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (JoinType c : JoinType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JoinType valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
isOuter
public boolean isOuter()
Deprecated.
-
-