Enum UpdateKind
- All Implemented Interfaces:
Serializable,Comparable<UpdateKind>
Lists all kinds of
ModifyKind.UPDATE operation.-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThis kind indicates that operators should emit update changes in the way that a row ofRowKind#UPDATE_BEFOREand a row ofRowKind#UPDATE_AFTERtogether.NONE doesn't represent any kind of update operation.This kind indicates that operators should emit update changes just as a row ofRowKind#UPDATE_AFTER. -
Method Summary
Modifier and TypeMethodDescriptionstatic UpdateKindReturns the enum constant of this type with the specified name.static UpdateKind[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NONE
NONE doesn't represent any kind of update operation. -
ONLY_UPDATE_AFTER
This kind indicates that operators should emit update changes just as a row ofRowKind#UPDATE_AFTER. -
BEFORE_AND_AFTER
This kind indicates that operators should emit update changes in the way that a row ofRowKind#UPDATE_BEFOREand a row ofRowKind#UPDATE_AFTERtogether.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-