Package tech.ydb.yoj.databind.schema
Enum Class Changefeed.Mode
- All Implemented Interfaces:
Serializable,Comparable<Changefeed.Mode>,Constable
- Enclosing class:
- Changefeed
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionOnly the key component of the modified rowBoth new and old images of the rowThe entire row, as it appears after it was modifiedThe entire row, as it appeared before it was modifiedUpdated columns -
Method Summary
Modifier and TypeMethodDescriptionstatic Changefeed.ModeReturns the enum constant of this class with the specified name.static Changefeed.Mode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
KEYS_ONLY
Only the key component of the modified row -
UPDATES
Updated columns -
NEW_IMAGE
The entire row, as it appears after it was modified -
OLD_IMAGE
The entire row, as it appeared before it was modified -
NEW_AND_OLD_IMAGES
Both new and old images of the row
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-