public static enum PostgresConnectorConfig.SchemaRefreshMode extends Enum<PostgresConnectorConfig.SchemaRefreshMode> implements EnumeratedValue
| Enum Constant and Description |
|---|
COLUMNS_DIFF
Refresh the in-memory schema cache whenever there is a discrepancy between it and the schema derived from the
incoming message.
|
COLUMNS_DIFF_EXCLUDE_UNCHANGED_TOAST
Refresh the in-memory schema cache if there is a discrepancy between it and the schema derived from the
incoming message, unless TOASTable data can account for the discrepancy.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static PostgresConnectorConfig.SchemaRefreshMode |
parse(String value)
Determine if the supplied value is one of the predefined options.
|
static PostgresConnectorConfig.SchemaRefreshMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PostgresConnectorConfig.SchemaRefreshMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PostgresConnectorConfig.SchemaRefreshMode COLUMNS_DIFF
public static final PostgresConnectorConfig.SchemaRefreshMode COLUMNS_DIFF_EXCLUDE_UNCHANGED_TOAST
private final String value
public static PostgresConnectorConfig.SchemaRefreshMode[] values()
for (PostgresConnectorConfig.SchemaRefreshMode c : PostgresConnectorConfig.SchemaRefreshMode.values()) System.out.println(c);
public static PostgresConnectorConfig.SchemaRefreshMode 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.SchemaRefreshMode parse(String value)
value - the configuration property value; may not be nullCopyright © 2021 JBoss by Red Hat. All rights reserved.