public static enum ReflectionMergeBehavior.Policy extends Enum<ReflectionMergeBehavior.Policy>
| Enum Constant and Description |
|---|
all
Merges any objects.
|
mergeable
Only merges objects implementing
Mergeable. |
| Modifier and Type | Method and Description |
|---|---|
static ReflectionMergeBehavior.Policy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReflectionMergeBehavior.Policy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReflectionMergeBehavior.Policy mergeable
Mergeable.public static final ReflectionMergeBehavior.Policy all
public static ReflectionMergeBehavior.Policy[] values()
for (ReflectionMergeBehavior.Policy c : ReflectionMergeBehavior.Policy.values()) System.out.println(c);
public static ReflectionMergeBehavior.Policy 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 © 2020. All rights reserved.