public static enum View.AlertType extends Enum<View.AlertType>
| Modifier and Type | Method and Description |
|---|---|
static View.AlertType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static View.AlertType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final View.AlertType SUCCESS
public static final View.AlertType INFO
public static final View.AlertType WARNING
public static final View.AlertType DANGER
public static View.AlertType[] values()
for (View.AlertType c : View.AlertType.values()) System.out.println(c);
public static View.AlertType 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 © 2018 Ajibot. All rights reserved.