public static enum Queue.Events extends java.lang.Enum<Queue.Events>
Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
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
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 namejava.lang.NullPointerException
- if the argument is null