Package io.trino.operator.aggregation
Enum AggregationFunctionAdapter.AggregationParameterKind
- java.lang.Object
-
- java.lang.Enum<AggregationFunctionAdapter.AggregationParameterKind>
-
- io.trino.operator.aggregation.AggregationFunctionAdapter.AggregationParameterKind
-
- All Implemented Interfaces:
Serializable,Comparable<AggregationFunctionAdapter.AggregationParameterKind>
- Enclosing class:
- AggregationFunctionAdapter
public static enum AggregationFunctionAdapter.AggregationParameterKind extends Enum<AggregationFunctionAdapter.AggregationParameterKind>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BLOCK_INDEXBLOCK_INPUT_CHANNELINPUT_CHANNELNULLABLE_BLOCK_INPUT_CHANNELSTATE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AggregationFunctionAdapter.AggregationParameterKindvalueOf(String name)Returns the enum constant of this type with the specified name.static AggregationFunctionAdapter.AggregationParameterKind[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INPUT_CHANNEL
public static final AggregationFunctionAdapter.AggregationParameterKind INPUT_CHANNEL
-
BLOCK_INPUT_CHANNEL
public static final AggregationFunctionAdapter.AggregationParameterKind BLOCK_INPUT_CHANNEL
-
NULLABLE_BLOCK_INPUT_CHANNEL
public static final AggregationFunctionAdapter.AggregationParameterKind NULLABLE_BLOCK_INPUT_CHANNEL
-
BLOCK_INDEX
public static final AggregationFunctionAdapter.AggregationParameterKind BLOCK_INDEX
-
STATE
public static final AggregationFunctionAdapter.AggregationParameterKind STATE
-
-
Method Detail
-
values
public static AggregationFunctionAdapter.AggregationParameterKind[] 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 (AggregationFunctionAdapter.AggregationParameterKind c : AggregationFunctionAdapter.AggregationParameterKind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AggregationFunctionAdapter.AggregationParameterKind 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
-
-