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