public enum AlertType extends Enum<AlertType> implements Style
Alert or AlertBlock.| Enum Constant and Description |
|---|
DEFAULT |
ERROR |
INFO |
SUCCESS |
WARNING |
| Modifier and Type | Method and Description |
|---|---|
String |
get()
Gets the CSS class name (or a part thereof) associated with this
constant.
|
String |
getWithoutPrefix()
Get style name without prefix.
|
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 DEFAULT
public static final AlertType ERROR
public static final AlertType SUCCESS
public static final AlertType INFO
public static final AlertType WARNING
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 nullpublic String get()
public String getWithoutPrefix()
Copyright © 2016. All rights reserved.