public static enum PostgresConnectorConfig.TruncateHandlingMode extends Enum<PostgresConnectorConfig.TruncateHandlingMode> implements EnumeratedValue
| Enum Constant and Description |
|---|
INCLUDE
Handle & Include TRUNCATE messages
|
SKIP
Skip TRUNCATE messages
|
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static PostgresConnectorConfig.TruncateHandlingMode |
parse(String value) |
static PostgresConnectorConfig.TruncateHandlingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PostgresConnectorConfig.TruncateHandlingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PostgresConnectorConfig.TruncateHandlingMode SKIP
public static final PostgresConnectorConfig.TruncateHandlingMode INCLUDE
private final String value
public static PostgresConnectorConfig.TruncateHandlingMode[] values()
for (PostgresConnectorConfig.TruncateHandlingMode c : PostgresConnectorConfig.TruncateHandlingMode.values()) System.out.println(c);
public static PostgresConnectorConfig.TruncateHandlingMode 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 nullpublic String getValue()
getValue in interface EnumeratedValuepublic static PostgresConnectorConfig.TruncateHandlingMode parse(String value)
Copyright © 2021 JBoss by Red Hat. All rights reserved.