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