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