public static enum Conference.Trim extends Enum<Conference.Trim>
| Enum Constant and Description |
|---|
DO_NOT_TRIM |
TRIM_SILENCE |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Conference.Trim |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Conference.Trim[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Conference.Trim TRIM_SILENCE
public static final Conference.Trim DO_NOT_TRIM
public static Conference.Trim[] values()
for (Conference.Trim c : Conference.Trim.values()) System.out.println(c);
public static Conference.Trim 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.Trim>Copyright © 2011 Twilio, Inc. All Rights Reserved.