Enum PartitionProjectionType
java.lang.Object
java.lang.Enum<PartitionProjectionType>
software.amazon.awscdk.services.glue.alpha.PartitionProjectionType
- All Implemented Interfaces:
Serializable,Comparable<PartitionProjectionType>,java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.128.0 (build 749b9a9)",
date="2026-05-06T14:53:17.019Z")
@Stability(Experimental)
public enum PartitionProjectionType
extends Enum<PartitionProjectionType>
(experimental) Partition projection type.
Determines how Athena projects partition values.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription(experimental) Project partition values as dates within a range.(experimental) Project partition values from an explicit list of values.(experimental) Project partition values that are injected at query time.(experimental) Project partition values as integers within a range. -
Method Summary
Modifier and TypeMethodDescriptionstatic PartitionProjectionTypeReturns the enum constant of this type with the specified name.static PartitionProjectionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
INTEGER
(experimental) Project partition values as integers within a range. -
DATE
(experimental) Project partition values as dates within a range. -
ENUM
(experimental) Project partition values from an explicit list of values. -
INJECTED
(experimental) Project partition values that are injected at query time.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-