public static enum Conference.VideoOption extends Enum<Conference.VideoOption>
Enum Constant and Description |
---|
MAX_FRAME_RATE
Set maximum frame rate
|
MAX_HEIGHT
Set maximum height
|
MAX_WIDTH
Set maximum width
|
Modifier and Type | Method and Description |
---|---|
static Conference.VideoOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Conference.VideoOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Conference.VideoOption MAX_WIDTH
public static final Conference.VideoOption MAX_HEIGHT
public static final Conference.VideoOption MAX_FRAME_RATE
public static Conference.VideoOption[] values()
for (Conference.VideoOption c : Conference.VideoOption.values()) System.out.println(c);
public static Conference.VideoOption 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.