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