public static enum Conference.GeneralOption extends Enum<Conference.GeneralOption>
Enum Constant and Description |
---|
GL_RENDERER
Specify a custom open_gl render
|
RECEIVE_AUDIO
Receive audio.
|
RECEIVE_VIDEO
Receive video.
|
SEND_AUDIO
Send audio.
|
SEND_ONLY
Send only.
|
SEND_VIDEO
Send video.
|
Modifier and Type | Method and Description |
---|---|
static Conference.GeneralOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Conference.GeneralOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Conference.GeneralOption GL_RENDERER
public static final Conference.GeneralOption SEND_ONLY
public static final Conference.GeneralOption SEND_AUDIO
public static final Conference.GeneralOption SEND_VIDEO
public static final Conference.GeneralOption RECEIVE_AUDIO
public static final Conference.GeneralOption RECEIVE_VIDEO
public static Conference.GeneralOption[] values()
for (Conference.GeneralOption c : Conference.GeneralOption.values()) System.out.println(c);
public static Conference.GeneralOption 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 © 2017. All rights reserved.