public static enum Style.Merge.Strategy extends java.lang.Enum<Style.Merge.Strategy>
| Enum Constant and Description |
|---|
ALWAYS
Always merge onto target.
|
IF_ABSENT_ON_TARGET
Merge onto target when not already set on target.
|
NEVER
Never merges onto target.
|
| Modifier and Type | Method and Description |
|---|---|
static Style.Merge.Strategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Style.Merge.Strategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Style.Merge.Strategy ALWAYS
public static final Style.Merge.Strategy NEVER
public static final Style.Merge.Strategy IF_ABSENT_ON_TARGET
public static Style.Merge.Strategy[] values()
for (Style.Merge.Strategy c : Style.Merge.Strategy.values()) System.out.println(c);
public static Style.Merge.Strategy 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 null