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