public static enum Constants.VideoScenario extends java.lang.Enum<Constants.VideoScenario>
Enum Constant and Description |
---|
APPLICATION_SCENARIO_1V1
2: Video Call Scenario.
|
APPLICATION_SCENARIO_GENERAL
0: (Default) The general video scenario
|
APPLICATION_SCENARIO_MEETING
1: Meeting Scenario.
|
Modifier and Type | Method and Description |
---|---|
static int |
getValue(Constants.VideoScenario type) |
static Constants.VideoScenario |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constants.VideoScenario[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.VideoScenario APPLICATION_SCENARIO_GENERAL
public static final Constants.VideoScenario APPLICATION_SCENARIO_MEETING
public static final Constants.VideoScenario APPLICATION_SCENARIO_1V1
public static Constants.VideoScenario[] values()
for (Constants.VideoScenario c : Constants.VideoScenario.values()) System.out.println(c);
public static Constants.VideoScenario valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static int getValue(Constants.VideoScenario type)