public enum Profile extends Enum<Profile>
LiveEventConfig.Builder.profile(Profile)
Enum Constant and Description |
---|
_1080P_AND_SOURCE
1920 x 1080 and origin streaming source
|
_360P
640 x 360
|
_720P
1280 x 720
|
_720P_AND_SOURCE
1280 x 720 and origin streaming source
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static Profile |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Profile[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Profile _360P
public static final Profile _720P
public static final Profile _720P_AND_SOURCE
public static final Profile _1080P_AND_SOURCE
public static Profile[] values()
for (Profile c : Profile.values()) System.out.println(c);
public static Profile 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