Video SDK for Android API Reference
Loading...
Searching...
No Matches
ZoomVideoSDKVideoResolution.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
7
8
11
14
17
20
23
26
27 private int value;
28
30 this.value = value;
31 }
32
36 public int getValue() {
37 return value;
38 }
39
46 public static ZoomVideoSDKVideoResolution fromValue(int value) {
47 switch (value) {
48 case 0: {
49 return VideoResolution_90P;
50 }
51 case 1: {
52 return VideoResolution_180P;
53 }
54 case 2: {
55 return VideoResolution_360P;
56 }
57
58 case 3: {
59 return VideoResolution_720P;
60 }
61 case 4: {
62 return VideoResolution_1080P;
63 }
64 }
65 return VideoResolution_90P;
66 }
67
68
69}
Enumeration of video resolution options.
int getValue()
Get the value (enum constant) associated with the video resolution.
static ZoomVideoSDKVideoResolution fromValue(int value)
Converts the value to the specific ZoomVideoSDKVideoResolution enum.