Package io.trino.operator.join
Enum LookupJoinOperatorFactory.JoinType
- java.lang.Object
-
- java.lang.Enum<LookupJoinOperatorFactory.JoinType>
-
- io.trino.operator.join.LookupJoinOperatorFactory.JoinType
-
- All Implemented Interfaces:
Serializable,Comparable<LookupJoinOperatorFactory.JoinType>
- Enclosing class:
- LookupJoinOperatorFactory
public static enum LookupJoinOperatorFactory.JoinType extends Enum<LookupJoinOperatorFactory.JoinType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FULL_OUTERINNERLOOKUP_OUTERPROBE_OUTER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LookupJoinOperatorFactory.JoinTypevalueOf(String name)Returns the enum constant of this type with the specified name.static LookupJoinOperatorFactory.JoinType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INNER
public static final LookupJoinOperatorFactory.JoinType INNER
-
PROBE_OUTER
public static final LookupJoinOperatorFactory.JoinType PROBE_OUTER
-
LOOKUP_OUTER
public static final LookupJoinOperatorFactory.JoinType LOOKUP_OUTER
-
FULL_OUTER
public static final LookupJoinOperatorFactory.JoinType FULL_OUTER
-
-
Method Detail
-
values
public static LookupJoinOperatorFactory.JoinType[] values()
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 (LookupJoinOperatorFactory.JoinType c : LookupJoinOperatorFactory.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 LookupJoinOperatorFactory.JoinType valueOf(String name)
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
-
-