public enum AmazonDomain extends java.lang.Enum<AmazonDomain>
Enum Constant and Description |
---|
MUSIC
Style the speech for talking about music, video, or other multi-media content (available in English (US)).
|
NEWS
Style the speech similar to what you hear when listening to the news on the radio or television (available in English (US) and English (AU)).
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static AmazonDomain |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AmazonDomain[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AmazonDomain MUSIC
public static final AmazonDomain NEWS
public static AmazonDomain[] values()
for (AmazonDomain c : AmazonDomain.values()) System.out.println(c);
public static AmazonDomain valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<AmazonDomain>