- All Implemented Interfaces:
Serializable,Comparable<JoinMode>,java.lang.constant.Constable
Specifies how the Join operator should handle
rows with unmatched keys. These are rows from one of the inputs
of the join that do not join with any row from the other input. Such
rows may be dropped from the join, or retained by padding with nulls
to populate fields where data is not available.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionFull outer join: Retain rows with unmatched keys.Inner join: Discard input rows with unmatched keys.Left outer join: Retain rows from the left input with unmatched keys, but discard such rows from the right input.Right outer join: Retain rows from the right input with unmatched keys, but discard such rows from the left input. -
Method Summary
-
Enum Constant Details
-
INNER
Inner join: Discard input rows with unmatched keys. -
FULL_OUTER
Full outer join: Retain rows with unmatched keys. -
LEFT_OUTER
Left outer join: Retain rows from the left input with unmatched keys, but discard such rows from the right input. -
RIGHT_OUTER
Right outer join: Retain rows from the right input with unmatched keys, but discard such rows from the left input.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-