com.skype
Enum SMS.Status

java.lang.Object
  extended by java.lang.Enum<SMS.Status>
      extended by 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.


Enum Constant Summary
COMPOSING
           
DELIVERED
           
FAILED
           
READ
           
RECEIVED
          RECEIVED - SMS is received.
SENDING_TO_SERVER
           
SENT_TO_SERVER
           
SOME_TARGETS_FAILED
           
UNKNOWN
           
 
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.
 
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

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
Method Detail

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.