Enum CdcTableReconciliationPolicy
java.lang.Object
java.lang.Enum<CdcTableReconciliationPolicy>
io.github.flink.gcp.connector.bigquery.sink.CdcTableReconciliationPolicy
- All Implemented Interfaces:
Serializable,Comparable<CdcTableReconciliationPolicy>,java.lang.constant.Constable
Policy for a BigQuery CDC destination table that already exists.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionReconcile mutable CDC table properties while rejecting primary-key drift.Verify the CDC table contract without starting adoption or drift repair. -
Method Summary
Modifier and TypeMethodDescriptiontoString()Returns the lower-case spelling used by the Table API option.static CdcTableReconciliationPolicyReturns the enum constant of this type with the specified name.static CdcTableReconciliationPolicy[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
VERIFY_ONLY
Verify the CDC table contract without starting adoption or drift repair.A matching connector-owned pending attempt is resumed so an interrupted operation can finish.
-
RECONCILE
Reconcile mutable CDC table properties while rejecting primary-key drift.
-
-
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
-
toString
Returns the lower-case spelling used by the Table API option.- Overrides:
toStringin classEnum<CdcTableReconciliationPolicy>
-