|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Queue.Events>
esmska.data.Queue.Events
public static enum Queue.Events
Enum Constant Summary | |
---|---|
NEW_SMS_READY
Existing sms is now ready for sending. |
|
QUEUE_CLEARED
All sms's removed. |
|
QUEUE_PAUSED
Queue has been paused. |
|
QUEUE_RESUMED
Queue has been resumed. |
|
SENDING_SMS
Existing sms is now being sent. |
|
SMS_ADDED
New sms added. |
|
SMS_POSITION_CHANGED
The postition of sms in the queue changed. |
|
SMS_REMOVED
Existing sms removed. |
|
SMS_SENDING_FAILED
Existing sms failed to be sent. |
|
SMS_SENT
Existing sms has been sent. |
Method Summary | |
---|---|
static Queue.Events |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Queue.Events[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, 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 Queue.Events SMS_ADDED
public static final Queue.Events SMS_REMOVED
public static final Queue.Events QUEUE_CLEARED
public static final Queue.Events SMS_POSITION_CHANGED
public static final Queue.Events NEW_SMS_READY
public static final Queue.Events SENDING_SMS
public static final Queue.Events SMS_SENT
public static final Queue.Events SMS_SENDING_FAILED
public static final Queue.Events QUEUE_PAUSED
public static final Queue.Events QUEUE_RESUMED
Method Detail |
---|
public static Queue.Events[] values()
for (Queue.Events c : Queue.Events.values()) System.out.println(c);
public static Queue.Events 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |