public static enum View.AlertType extends java.lang.Enum<View.AlertType>
| Modifier and Type | Method | Description |
|---|---|---|
static View.AlertType |
valueOf(java.lang.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(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 nullCopyright © 2017 Ajibot. All rights reserved.