public static enum Conference.AudioOption extends Enum<Conference.AudioOption>
Enum Constant and Description |
---|
PREFERRED_CODEC
Set the preferred audio codec
|
PREFERRED_CODEC_CLOCKRATE
Set the preferred audio codec clock rate
|
Modifier and Type | Method and Description |
---|---|
static Conference.AudioOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Conference.AudioOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Conference.AudioOption PREFERRED_CODEC
public static final Conference.AudioOption PREFERRED_CODEC_CLOCKRATE
public static Conference.AudioOption[] values()
for (Conference.AudioOption c : Conference.AudioOption.values()) System.out.println(c);
public static Conference.AudioOption 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 nullCopyright © 2015. All rights reserved.