public static enum NotificationThread.MODE extends Enum<NotificationThread.MODE>
| Enum Constant and Description |
|---|
LIST
In LIST mode, the thread is given a predefined list of devices and pushes all notifications as soon as it is started.
|
QUEUE
In QUEUE mode, the thread is started with an open connection and no notification to send, and waits for notifications to be queued.
|
| Modifier and Type | Method and Description |
|---|---|
static NotificationThread.MODE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NotificationThread.MODE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotificationThread.MODE LIST
public static final NotificationThread.MODE QUEUE
public static NotificationThread.MODE[] values()
for (NotificationThread.MODE c : NotificationThread.MODE.values()) System.out.println(c);
public static NotificationThread.MODE 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.