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