Enum NumericOverflowHandlingAction
java.lang.Object
java.lang.Enum<NumericOverflowHandlingAction>
software.amazon.awscdk.services.glue.alpha.NumericOverflowHandlingAction
- All Implemented Interfaces:
Serializable
,Comparable<NumericOverflowHandlingAction>
,java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-10-31T19:13:07.914Z")
@Stability(Experimental)
public enum NumericOverflowHandlingAction
extends Enum<NumericOverflowHandlingAction>
(experimental) Specifies the action to perform when ORC data contains an integer (for example, BIGINT or int64) that is larger than the column definition (for example, SMALLINT or int16).
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescription(experimental) Invalid character handling is turned off.(experimental) Set each value in the row to null.(experimental) Cancel the query when the data includes invalid characters.(experimental) Set invalid characters to null. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static NumericOverflowHandlingAction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
DISABLED
(experimental) Invalid character handling is turned off. -
FAIL
(experimental) Cancel the query when the data includes invalid characters. -
SET_TO_NULL
(experimental) Set invalid characters to null. -
DROP_ROW
(experimental) Set each value in the row to null.
-
-
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
-