public enum MergeMode extends Enum<MergeMode>
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static MergeMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MergeMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MergeMode VERIFY
public static final MergeMode AS_NEW
public static final MergeMode AS_OLD
public static final MergeMode BY_DATE
protected String name
public static MergeMode[] values()
for (MergeMode c : MergeMode.values()) System.out.println(c);
public static MergeMode 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 nullpublic String getName()
Copyright © 2020 Flowable. All rights reserved.