Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
ZoomSDKVideoResolution.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
9
12
15
18
21
22 private int value;
23
25 this.value = value;
26 }
27
28 public int getValue() {
29 return value;
30 }
31
32 public static ZoomSDKVideoResolution fromValue(int value) {
33 switch (value) {
34 case 0: {
35 return VideoResolution_90P;
36 }
37 case 1: {
38 return VideoResolution_180P;
39 }
40 case 2: {
41 return VideoResolution_360P;
42 }
43
44 case 3: {
45 return VideoResolution_720P;
46 }
47 }
48 return VideoResolution_90P;
49 }
50}
Enumeration of video resolution options.
static ZoomSDKVideoResolution fromValue(int value)