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