Package us.zoom.sdk
Enum Class SDKVideoPreferenceMode
- All Implemented Interfaces:
Serializable
,Comparable<SDKVideoPreferenceMode>
,Constable
Enumeration of video preference modes.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionBalance (Default preference with no additional parameters needed): Zoom will do what is best under the current bandwidth situation and make adjustments as needed.Custom: Allows customization by providing the minimum and maximum frame rate.Sharpness: Prioritizes a smooth video frame transition by preserving the frame rate as much as possible.Smoothness: Prioritizes a sharp video image by preserving the resolution as much as possible. -
Method Summary
Modifier and TypeMethodDescriptionstatic SDKVideoPreferenceMode
Returns the enum constant of this class with the specified name.static SDKVideoPreferenceMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ZoomVideoSDKVideoPreferenceMode_Balance
Balance (Default preference with no additional parameters needed): Zoom will do what is best under the current bandwidth situation and make adjustments as needed. -
ZoomVideoSDKVideoPreferenceMode_Sharpness
Sharpness: Prioritizes a smooth video frame transition by preserving the frame rate as much as possible. -
ZoomVideoSDKVideoPreferenceMode_Smoothness
Smoothness: Prioritizes a sharp video image by preserving the resolution as much as possible. -
ZoomVideoSDKVideoPreferenceMode_Custom
Custom: Allows customization by providing the minimum and maximum frame rate. Use this mode if you have an understanding of your network behavior and a clear idea on how to adjust the frame rate to achieve the desired video quality.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-