public static enum Constants.VideoStreamType extends java.lang.Enum<Constants.VideoStreamType>
| Enum Constant and Description |
|---|
VIDEO_STREAM_HIGH
0: The high-quality video stream, which has the highest resolution and
bitrate.
|
VIDEO_STREAM_LAYER_1
4: Layer 1, lower resolution/bitrate than VIDEO_STREAM_HIGH.
|
VIDEO_STREAM_LAYER_2
5: Layer 2, lower resolution/bitrate than VIDEO_STREAM_LAYER_1.
|
VIDEO_STREAM_LAYER_3
6: Layer 3, lower resolution/bitrate than VIDEO_STREAM_LAYER_2.
|
VIDEO_STREAM_LAYER_4
7: Layer 4, lower resolution/bitrate than VIDEO_STREAM_LAYER_3.
|
VIDEO_STREAM_LAYER_5
8: Layer 5, lower resolution/bitrate than VIDEO_STREAM_LAYER_4.
|
VIDEO_STREAM_LAYER_6
9: Layer 6, lower resolution/bitrate than VIDEO_STREAM_LAYER_5.
|
VIDEO_STREAM_LOW
1: The low-quality video stream, which has the lowest resolution and bitrate.
|
| Modifier and Type | Field and Description |
|---|---|
private int |
value |
| Modifier and Type | Method and Description |
|---|---|
static Constants.VideoStreamType |
fromInt(int value) |
int |
getValue() |
static Constants.VideoStreamType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constants.VideoStreamType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.VideoStreamType VIDEO_STREAM_HIGH
public static final Constants.VideoStreamType VIDEO_STREAM_LOW
public static final Constants.VideoStreamType VIDEO_STREAM_LAYER_1
public static final Constants.VideoStreamType VIDEO_STREAM_LAYER_2
public static final Constants.VideoStreamType VIDEO_STREAM_LAYER_3
public static final Constants.VideoStreamType VIDEO_STREAM_LAYER_4
public static final Constants.VideoStreamType VIDEO_STREAM_LAYER_5
public static final Constants.VideoStreamType VIDEO_STREAM_LAYER_6
public static Constants.VideoStreamType[] values()
for (Constants.VideoStreamType c : Constants.VideoStreamType.values()) System.out.println(c);
public static Constants.VideoStreamType 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 int getValue()
public static Constants.VideoStreamType fromInt(int value)