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