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