public enum ValueCombinePolicy extends Enum<ValueCombinePolicy>
PropertyConfigHandler for details.| Enum Constant and Description |
|---|
Merge
All provided values are merged.
|
Replace
The prioritized value fully replaces any other values.
|
| Modifier and Type | Method and Description |
|---|---|
static ValueCombinePolicy |
fromString(String valueCombinePolicy) |
static ValueCombinePolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValueCombinePolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValueCombinePolicy Replace
public static final ValueCombinePolicy Merge
public static ValueCombinePolicy[] values()
for (ValueCombinePolicy c : ValueCombinePolicy.values()) System.out.println(c);
public static ValueCombinePolicy 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 static ValueCombinePolicy fromString(String valueCombinePolicy)
Copyright © 2019. All rights reserved.