public static enum AudioPlayer.AudioType extends java.lang.Enum<AudioPlayer.AudioType>
| Modifier and Type | Method and Description | 
|---|---|
| static AudioPlayer.AudioType | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static AudioPlayer.AudioType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final AudioPlayer.AudioType IDLE
public static final AudioPlayer.AudioType READING
public static final AudioPlayer.AudioType LANDSCAPE
public static AudioPlayer.AudioType[] values()
for (AudioPlayer.AudioType c : AudioPlayer.AudioType.values()) System.out.println(c);
public static AudioPlayer.AudioType 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 null