Package us.zoom.sdk

Enum Class SDKVideoPreferenceMode

java.lang.Object
java.lang.Enum<SDKVideoPreferenceMode>
us.zoom.sdk.SDKVideoPreferenceMode
All Implemented Interfaces:
Serializable, Comparable<SDKVideoPreferenceMode>, Constable

public enum SDKVideoPreferenceMode extends Enum<SDKVideoPreferenceMode>
Enumeration of video preference modes.
  • Enum Constant Details

    • ZoomVideoSDKVideoPreferenceMode_Balance

      public static final SDKVideoPreferenceMode 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

      public static final SDKVideoPreferenceMode ZoomVideoSDKVideoPreferenceMode_Sharpness
      Sharpness: Prioritizes a smooth video frame transition by preserving the frame rate as much as possible.
    • ZoomVideoSDKVideoPreferenceMode_Smoothness

      public static final SDKVideoPreferenceMode ZoomVideoSDKVideoPreferenceMode_Smoothness
      Smoothness: Prioritizes a sharp video image by preserving the resolution as much as possible.
    • ZoomVideoSDKVideoPreferenceMode_Custom

      public static final SDKVideoPreferenceMode 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

      public static SDKVideoPreferenceMode[] 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

      public static SDKVideoPreferenceMode valueOf(String name)
      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 name
      NullPointerException - if the argument is null