public static enum Command.Status extends Enum<Command.Status>
Enum Constant and Description |
---|
DELIVERED |
FAILED |
QUEUED |
RECEIVED |
SENT |
Modifier and Type | Method and Description |
---|---|
static Command.Status |
forValue(String value)
Generate a Status from a string.
|
String |
toString() |
static Command.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Command.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Command.Status QUEUED
public static final Command.Status SENT
public static final Command.Status DELIVERED
public static final Command.Status RECEIVED
public static final Command.Status FAILED
public static Command.Status[] values()
for (Command.Status c : Command.Status.values()) System.out.println(c);
public static Command.Status valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<Command.Status>
public static Command.Status forValue(String value)
value
- string valueCopyright © 2019 Twilio, Inc. All Rights Reserved.