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