public static enum SubstanceSlices.MenuGutterFillKind extends java.lang.Enum<SubstanceSlices.MenuGutterFillKind>
| Enum Constant | Description |
|---|---|
HARD |
The
hard (default) fill kind - draws gradient ranging from darker to light
in the menu gutter. |
HARD_FILL |
The
hard fill fill kind - draws darker fill background in the menu gutter. |
NONE |
The
none fill kind - draws no background in the menu gutter. |
SOFT |
The
soft fill kind - draws gradient ranging from darker to light in the menu
gutter. |
SOFT_FILL |
The
soft fill fill kind - draws light fill background in the menu gutter. |
| Modifier and Type | Method | Description |
|---|---|---|
static SubstanceSlices.MenuGutterFillKind |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static SubstanceSlices.MenuGutterFillKind[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubstanceSlices.MenuGutterFillKind NONE
none fill kind - draws no background in the menu gutter.public static final SubstanceSlices.MenuGutterFillKind SOFT_FILL
soft fill fill kind - draws light fill background in the menu gutter.public static final SubstanceSlices.MenuGutterFillKind HARD_FILL
hard fill fill kind - draws darker fill background in the menu gutter.public static final SubstanceSlices.MenuGutterFillKind SOFT
soft fill kind - draws gradient ranging from darker to light in the menu
gutter.public static final SubstanceSlices.MenuGutterFillKind HARD
hard (default) fill kind - draws gradient ranging from darker to light
in the menu gutter.public static SubstanceSlices.MenuGutterFillKind[] values()
for (SubstanceSlices.MenuGutterFillKind c : SubstanceSlices.MenuGutterFillKind.values()) System.out.println(c);
public static SubstanceSlices.MenuGutterFillKind 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