public static enum Aggregator.MergeActionWhenMatched extends Enum<Aggregator.MergeActionWhenMatched>
| Enum Constant and Description |
|---|
fail |
keepExisting |
merge |
replace |
| Modifier and Type | Method and Description |
|---|---|
static Aggregator.MergeActionWhenMatched |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Aggregator.MergeActionWhenMatched[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Aggregator.MergeActionWhenMatched replace
public static final Aggregator.MergeActionWhenMatched keepExisting
public static final Aggregator.MergeActionWhenMatched merge
public static final Aggregator.MergeActionWhenMatched fail
public static Aggregator.MergeActionWhenMatched[] values()
for (Aggregator.MergeActionWhenMatched c : Aggregator.MergeActionWhenMatched.values()) System.out.println(c);
public static Aggregator.MergeActionWhenMatched 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 © 2021. All rights reserved.