Enum Message.Status
- java.lang.Object
-
- java.lang.Enum<Message.Status>
-
- com.twilio.rest.api.v2010.account.Message.Status
-
- All Implemented Interfaces:
Serializable
,Comparable<Message.Status>
- Enclosing class:
- Message
public static enum Message.Status extends Enum<Message.Status>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Message.Status
forValue(String value)
String
toString()
static Message.Status
valueOf(String name)
Returns the enum constant of this type with the specified name.static Message.Status[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
QUEUED
public static final Message.Status QUEUED
-
SENDING
public static final Message.Status SENDING
-
SENT
public static final Message.Status SENT
-
FAILED
public static final Message.Status FAILED
-
DELIVERED
public static final Message.Status DELIVERED
-
UNDELIVERED
public static final Message.Status UNDELIVERED
-
RECEIVING
public static final Message.Status RECEIVING
-
RECEIVED
public static final Message.Status RECEIVED
-
ACCEPTED
public static final Message.Status ACCEPTED
-
SCHEDULED
public static final Message.Status SCHEDULED
-
READ
public static final Message.Status READ
-
PARTIALLY_DELIVERED
public static final Message.Status PARTIALLY_DELIVERED
-
CANCELED
public static final Message.Status CANCELED
-
-
Method Detail
-
values
public static Message.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 (Message.Status c : Message.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 Message.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 nameNullPointerException
- if the argument is null
-
toString
public String toString()
- Overrides:
toString
in classEnum<Message.Status>
-
forValue
public static Message.Status forValue(String value)
-
-