public enum NotificationTypeType extends Enum<NotificationTypeType>
Clase Java para NotificationTypeType.
El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
<simpleType name="NotificationTypeType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="alert"/>
<enumeration value="error"/>
<enumeration value="info"/>
</restriction>
</simpleType>
| Modifier and Type | Method and Description |
|---|---|
static NotificationTypeType |
fromValue(String v) |
String |
value() |
static NotificationTypeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NotificationTypeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotificationTypeType ALERT
public static final NotificationTypeType ERROR
public static final NotificationTypeType INFO
public static NotificationTypeType[] values()
for (NotificationTypeType c : NotificationTypeType.values()) System.out.println(c);
public static NotificationTypeType 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 value()
public static NotificationTypeType fromValue(String v)
Copyright © 2015. All Rights Reserved.