public static enum ChangefeedDescription.State extends Enum<ChangefeedDescription.State>
| Enum Constant and Description |
|---|
DISABLED
No new change records are generated, but the old ones remain available
From this state changefeed cannot be switched to any other state |
ENABLED
Normal state, from this state changefeed can be disabled
|
INITIAL_SCAN
An initial scan is being performed.
|
| Modifier and Type | Method and Description |
|---|---|
static ChangefeedDescription.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChangefeedDescription.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangefeedDescription.State ENABLED
public static final ChangefeedDescription.State DISABLED
public static final ChangefeedDescription.State INITIAL_SCAN
public static ChangefeedDescription.State[] values()
for (ChangefeedDescription.State c : ChangefeedDescription.State.values()) System.out.println(c);
public static ChangefeedDescription.State 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 © 2025. All rights reserved.