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