public enum DeliveryClass extends Enum<DeliveryClass>
IMMEDIATELY.| Enum Constant and Description |
|---|
IMMEDIATELY
Indicates that the push notification should be delivered immediately
|
WITHIN_450
Indicates that the push notification should be delivered within 450
seconds (7.5 minutes)
|
WITHIN_900
Indicates that the push notification should be delivered within 900
seconds (15 minutes)
|
| Modifier and Type | Method and Description |
|---|---|
static DeliveryClass |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeliveryClass[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeliveryClass IMMEDIATELY
public static final DeliveryClass WITHIN_450
public static final DeliveryClass WITHIN_900
public static DeliveryClass[] values()
for (DeliveryClass c : DeliveryClass.values()) System.out.println(c);
public static DeliveryClass 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 © 2014 JBoss by Red Hat. All Rights Reserved.