public static enum FeedbackSummary.Status extends Enum<FeedbackSummary.Status>
| Enum Constant and Description |
|---|
COMPLETED |
FAILED |
IN_PROGRESS |
QUEUED |
| Modifier and Type | Method and Description |
|---|---|
static FeedbackSummary.Status |
forValue(String value)
Generate a Status from a string.
|
String |
toString() |
static FeedbackSummary.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FeedbackSummary.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FeedbackSummary.Status QUEUED
public static final FeedbackSummary.Status IN_PROGRESS
public static final FeedbackSummary.Status COMPLETED
public static final FeedbackSummary.Status FAILED
public static FeedbackSummary.Status[] values()
for (FeedbackSummary.Status c : FeedbackSummary.Status.values()) System.out.println(c);
public static FeedbackSummary.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<FeedbackSummary.Status>public static FeedbackSummary.Status forValue(String value)
value - string valueCopyright © 2011 Twilio, Inc. All Rights Reserved.