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