public enum AudioStreamingIndicator extends Enum<AudioStreamingIndicator>
| Enum Constant and Description |
|---|
PAUSE
Indicates that a button press of the Play/Pause button would pause the current playback.
|
PLAY
Indicates that a button press of the Play/Pause button would start the playback.
|
PLAY_PAUSE
Default playback indicator.
|
STOP
Indicates that a button press of the Play/Pause button would stop the current playback.
|
| Modifier and Type | Method and Description |
|---|---|
static AudioStreamingIndicator |
valueForString(String value)
Convert String to AudioStreamingIndicator
|
static AudioStreamingIndicator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AudioStreamingIndicator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AudioStreamingIndicator PLAY_PAUSE
public static final AudioStreamingIndicator PLAY
public static final AudioStreamingIndicator PAUSE
public static final AudioStreamingIndicator STOP
public static AudioStreamingIndicator[] values()
for (AudioStreamingIndicator c : AudioStreamingIndicator.values()) System.out.println(c);
public static AudioStreamingIndicator 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 static AudioStreamingIndicator valueForString(String value)
value - String