Enum InvalidCharHandlingAction
java.lang.Object
java.lang.Enum<InvalidCharHandlingAction>
software.amazon.awscdk.services.glue.alpha.InvalidCharHandlingAction
- All Implemented Interfaces:
Serializable
,Comparable<InvalidCharHandlingAction>
,java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-10-31T19:13:07.896Z")
@Stability(Experimental)
public enum InvalidCharHandlingAction
extends Enum<InvalidCharHandlingAction>
(experimental) Specifies the action to perform when query results contain invalid UTF-8 character 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 ConstantDescription(experimental) Doesn't perform invalid character handling.(experimental) Replaces each value in the row with null.(experimental) Cancels queries that return data containing invalid UTF-8 values.(experimental) Replaces the invalid character with the replacement character you specify usingREPLACEMENT_CHAR
.(experimental) Replaces invalid UTF-8 values with null. -
Method Summary
Modifier and TypeMethodDescriptionstatic InvalidCharHandlingAction
Returns the enum constant of this type with the specified name.static InvalidCharHandlingAction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
DISABLED
(experimental) Doesn't perform invalid character handling. -
FAIL
(experimental) Cancels queries that return data containing invalid UTF-8 values. -
SET_TO_NULL
(experimental) Replaces invalid UTF-8 values with null. -
DROP_ROW
(experimental) Replaces each value in the row with null. -
REPLACE
(experimental) Replaces the invalid character with the replacement character you specify usingREPLACEMENT_CHAR
.
-
-
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
-