com.skype
Enum SMS.Status
java.lang.Object
java.lang.Enum<SMS.Status>
com.skype.SMS.Status
- All Implemented Interfaces:
- Serializable, Comparable<SMS.Status>
- Enclosing class:
- SMS
public static enum SMS.Status
- extends Enum<SMS.Status>
Enumeration of SMS Status.
Method Summary |
static SMS.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static SMS.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
RECEIVED
public static final SMS.Status RECEIVED
- RECEIVED - SMS is received.
READ - SMS is read.
COMPOSING - SMS is being written (in Skype client).
SENDING_TO_SERVER - Sending the SMS to the SMS server.
SENT_TO_SERVER - SMS has been sent to the SMS server.
DELIVERED - SMS has been delivered to other party.
SOME_TARGETS_FAILED - SMS has not been deliverd to all parties.
FAILED - SMS could not be sent.
UNKNOWN - Status unknown.
READ
public static final SMS.Status READ
COMPOSING
public static final SMS.Status COMPOSING
SENDING_TO_SERVER
public static final SMS.Status SENDING_TO_SERVER
SENT_TO_SERVER
public static final SMS.Status SENT_TO_SERVER
DELIVERED
public static final SMS.Status DELIVERED
SOME_TARGETS_FAILED
public static final SMS.Status SOME_TARGETS_FAILED
FAILED
public static final SMS.Status FAILED
UNKNOWN
public static final SMS.Status UNKNOWN
values
public static SMS.Status[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (SMS.Status c : SMS.Status.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static SMS.Status valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
Copyright © 2004-2011. All Rights Reserved.