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