public enum StatusBarStyle extends Enum<StatusBarStyle>
| Enum Constant and Description |
|---|
BLACK
Status bar style.
|
BLACK_TRANSLUCENT
Status bar style.
|
DEFAULT
Status bar style.
|
| Modifier and Type | Method and Description |
|---|---|
static StatusBarStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatusBarStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatusBarStyle DEFAULT
public static final StatusBarStyle BLACK
public static final StatusBarStyle BLACK_TRANSLUCENT
public static StatusBarStyle[] values()
for (StatusBarStyle c : StatusBarStyle.values()) System.out.println(c);
public static StatusBarStyle 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 nullCopyright © 2011–2015 SWM. All rights reserved.