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