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