public static enum CdcCommonProperties.DeleteHandlingMode extends Enum<CdcCommonProperties.DeleteHandlingMode>
Enum Constant and Description |
---|
drop
records are removed.
|
none
pass delete events.
|
rewrite
add a __deleted column with true/false values based on record operation.
|
Modifier and Type | Method and Description |
---|---|
static CdcCommonProperties.DeleteHandlingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CdcCommonProperties.DeleteHandlingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CdcCommonProperties.DeleteHandlingMode drop
public static final CdcCommonProperties.DeleteHandlingMode rewrite
public static final CdcCommonProperties.DeleteHandlingMode none
public static CdcCommonProperties.DeleteHandlingMode[] values()
for (CdcCommonProperties.DeleteHandlingMode c : CdcCommonProperties.DeleteHandlingMode.values()) System.out.println(c);
public static CdcCommonProperties.DeleteHandlingMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2022. All rights reserved.