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:
  • Enum Constant Details

    • DISABLED

      @Stability(Experimental) public static final NumericOverflowHandlingAction DISABLED
      (experimental) Invalid character handling is turned off.
    • FAIL

      @Stability(Experimental) public static final NumericOverflowHandlingAction FAIL
      (experimental) Cancel the query when the data includes invalid characters.
    • SET_TO_NULL

      @Stability(Experimental) public static final NumericOverflowHandlingAction SET_TO_NULL
      (experimental) Set invalid characters to null.
    • DROP_ROW

      @Stability(Experimental) public static final NumericOverflowHandlingAction DROP_ROW
      (experimental) Set each value in the row to null.
  • Method Details

    • values

      public static NumericOverflowHandlingAction[] 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

      public static NumericOverflowHandlingAction 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 name
      NullPointerException - if the argument is null