public enum UpdateKind extends Enum<UpdateKind>
ModifyKind.UPDATE
operation.Enum Constant and Description |
---|
BEFORE_AND_AFTER
This kind indicates that operators should emit update changes in the way that a row of
RowKind#UPDATE_BEFORE and a row of RowKind#UPDATE_AFTER together. |
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 of
RowKind#UPDATE_AFTER . |
Modifier and Type | Method and Description |
---|---|
static UpdateKind |
valueOf(String name)
Returns 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.
|
public static final UpdateKind NONE
public static final UpdateKind ONLY_UPDATE_AFTER
RowKind#UPDATE_AFTER
.public static final UpdateKind BEFORE_AND_AFTER
RowKind#UPDATE_BEFORE
and a row of RowKind#UPDATE_AFTER
together.public static UpdateKind[] values()
for (UpdateKind c : UpdateKind.values()) System.out.println(c);
public static UpdateKind 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 © 2014–2021 The Apache Software Foundation. All rights reserved.