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