public enum AudioStreamingState extends Enum<AudioStreamingState>
| Enum Constant and Description |
|---|
ATTENUATED
Some kind of audio mixing is taking place.
|
AUDIBLE
Currently streaming audio, if any, is audible to user.
|
NOT_AUDIBLE
Currently streaming audio, if any, is not audible to user.
|
| Modifier and Type | Method and Description |
|---|---|
static AudioStreamingState |
valueForString(String value)
Convert String to AudioStreamingState
|
static AudioStreamingState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AudioStreamingState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AudioStreamingState AUDIBLE
public static final AudioStreamingState ATTENUATED
public static final AudioStreamingState NOT_AUDIBLE
public static AudioStreamingState[] values()
for (AudioStreamingState c : AudioStreamingState.values()) System.out.println(c);
public static AudioStreamingState 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 AudioStreamingState valueForString(String value)
value - String