public static enum Changefeed.Mode extends Enum<Changefeed.Mode>
| Enum Constant and Description |
|---|
KEYS_ONLY |
NEW_AND_OLD_IMAGES |
NEW_IMAGE |
OLD_IMAGE |
UPDATES |
| Modifier and Type | Method and Description |
|---|---|
static Changefeed.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Changefeed.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Changefeed.Mode KEYS_ONLY
public static final Changefeed.Mode UPDATES
public static final Changefeed.Mode NEW_IMAGE
public static final Changefeed.Mode OLD_IMAGE
public static final Changefeed.Mode NEW_AND_OLD_IMAGES
public static Changefeed.Mode[] values()
for (Changefeed.Mode c : Changefeed.Mode.values()) System.out.println(c);
public static Changefeed.Mode 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 © 2023. All rights reserved.