public enum IosNotificationAlertType extends java.lang.Enum<IosNotificationAlertType>
| Enum Constant and Description |
|---|
BANNER
banner
|
DEVICE_DEFAULT
device Default
|
MODAL
modal
|
NONE
none
|
UNEXPECTED_VALUE
For IosNotificationAlertType values that were not expected from the service
|
| Modifier and Type | Method and Description |
|---|---|
static IosNotificationAlertType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IosNotificationAlertType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IosNotificationAlertType DEVICE_DEFAULT
public static final IosNotificationAlertType BANNER
public static final IosNotificationAlertType MODAL
public static final IosNotificationAlertType NONE
public static final IosNotificationAlertType UNEXPECTED_VALUE
public static IosNotificationAlertType[] values()
for (IosNotificationAlertType c : IosNotificationAlertType.values()) System.out.println(c);
public static IosNotificationAlertType 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 null