public static enum Style.Merge extends java.lang.Enum<Style.Merge>
| Modifier and Type | Class and Description |
|---|---|
static class |
Style.Merge.Strategy
A merge strategy.
|
| Enum Constant and Description |
|---|
COLOR |
DECORATIONS |
EVENTS |
INSERTION |
| Modifier and Type | Method and Description |
|---|---|
static @NonNull java.util.Set<Style.Merge> |
all()
Gets a merge set of all merge types.
|
static @NonNull java.util.Set<Style.Merge> |
colorAndDecorations()
Gets a merge set containing
COLOR and DECORATIONS. |
static @NonNull java.util.Set<Style.Merge> |
of(Style.Merge... merges)
Creates a merge set.
|
static Style.Merge |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Style.Merge[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Style.Merge COLOR
public static final Style.Merge DECORATIONS
public static final Style.Merge EVENTS
public static final Style.Merge INSERTION
public static Style.Merge[] values()
for (Style.Merge c : Style.Merge.values()) System.out.println(c);
public static Style.Merge 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 static @NonNull java.util.Set<Style.Merge> all()
public static @NonNull java.util.Set<Style.Merge> colorAndDecorations()
COLOR and DECORATIONS.public static @NonNull java.util.Set<Style.Merge> of(Style.Merge... merges)
merges - the merge parts