public enum MergeStrategy extends java.lang.Enum<MergeStrategy>
Modifier and Type | Method and Description |
---|---|
MergeStrategy |
max(MergeStrategy other) |
static MergeStrategy |
valueOf(java.lang.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(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic MergeStrategy max(MergeStrategy other)
Copyright © 2020. All Rights Reserved.