public enum TitleAction extends Enum<TitleAction>
| Enum Constant and Description |
|---|
ACTION_BAR |
CLEAR |
RESET |
SUBTITLE |
TIMES |
TITLE |
| Modifier and Type | Method and Description |
|---|---|
static TitleAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TitleAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TitleAction TITLE
public static final TitleAction SUBTITLE
public static final TitleAction ACTION_BAR
public static final TitleAction TIMES
public static final TitleAction CLEAR
public static final TitleAction RESET
public static TitleAction[] values()
for (TitleAction c : TitleAction.values()) System.out.println(c);
public static TitleAction 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 © 2020. All rights reserved.