|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<NotificationThread.MODE>
javapns.notification.transmission.NotificationThread.MODE
public static enum NotificationThread.MODE
Working modes supported by Notification Threads.
Enum Constant Summary | |
---|---|
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. |
|
STOP
Mode used to stop a queue gracefully. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final NotificationThread.MODE LIST
public static final NotificationThread.MODE QUEUE
public static final NotificationThread.MODE STOP
Method Detail |
---|
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 name
NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |