Package io.trino.operator.aggregation
Enum AggregationMetadata.AggregationParameterKind
- java.lang.Object
-
- java.lang.Enum<AggregationMetadata.AggregationParameterKind>
-
- io.trino.operator.aggregation.AggregationMetadata.AggregationParameterKind
-
- All Implemented Interfaces:
Serializable,Comparable<AggregationMetadata.AggregationParameterKind>
- Enclosing class:
- AggregationMetadata
public static enum AggregationMetadata.AggregationParameterKind extends Enum<AggregationMetadata.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 AggregationMetadata.AggregationParameterKindvalueOf(String name)Returns the enum constant of this type with the specified name.static AggregationMetadata.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 AggregationMetadata.AggregationParameterKind INPUT_CHANNEL
-
BLOCK_INPUT_CHANNEL
public static final AggregationMetadata.AggregationParameterKind BLOCK_INPUT_CHANNEL
-
NULLABLE_BLOCK_INPUT_CHANNEL
public static final AggregationMetadata.AggregationParameterKind NULLABLE_BLOCK_INPUT_CHANNEL
-
BLOCK_INDEX
public static final AggregationMetadata.AggregationParameterKind BLOCK_INDEX
-
STATE
public static final AggregationMetadata.AggregationParameterKind STATE
-
-
Method Detail
-
values
public static AggregationMetadata.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 (AggregationMetadata.AggregationParameterKind c : AggregationMetadata.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 AggregationMetadata.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
-
-