public enum ToolbarStyle extends java.lang.Enum<ToolbarStyle>
| Enum Constant and Description |
|---|
DARK_BG_WITH_CLOSE |
GONE |
TRANSPARENT_BG_WITH_CLOSE |
VISIBLE |
| Modifier and Type | Method and Description |
|---|---|
static ToolbarStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ToolbarStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ToolbarStyle VISIBLE
public static final ToolbarStyle GONE
public static final ToolbarStyle DARK_BG_WITH_CLOSE
public static final ToolbarStyle TRANSPARENT_BG_WITH_CLOSE
public static ToolbarStyle[] values()
for (ToolbarStyle c : ToolbarStyle.values()) System.out.println(c);
public static ToolbarStyle 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