public static enum Participant.Status extends Enum<Participant.Status>
Enum Constant and Description |
---|
CONNECTED |
CONNECTING |
CREATED |
DISCONNECTED |
FAILED |
Modifier and Type | Method and Description |
---|---|
static Participant.Status |
forValue(String value) |
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 CREATED
public static final Participant.Status CONNECTING
public static final Participant.Status CONNECTED
public static final Participant.Status DISCONNECTED
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)
Copyright © 2011 Twilio, Inc. All Rights Reserved.