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