Package us.zoom.sdk

Enum Class ShareSettingType

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

public enum ShareSettingType extends Enum<ShareSettingType>
Enumeration of sharing types.
  • Enum Constant Details

    • UNKNOWN

      public static final ShareSettingType UNKNOWN
      Unknown
    • HOST_GRAB

      public static final ShareSettingType HOST_GRAB
      Anyone can share, but only one can share at a moment, and only the host can start sharing when another user is sharing. The previous share will be ended once the host grabs the sharing. For more information, please visit <https://support.zoom.com/hc/en/article?id=zm_kb&sysparm_article=KB0058730#h_01GCCD82NKKECQ6QJNH6F4CTWA>.
    • LOCK_SHARE

      public static final ShareSettingType LOCK_SHARE
      Only host can share.
    • ANYONE_GRAB

      public static final ShareSettingType ANYONE_GRAB
      Only one participant can share at a time. And anyone can start sharing when someone else is sharing.
    • MULTI_SHARE

      public static final ShareSettingType MULTI_SHARE
      Multi participant can share at a moment.
  • Method Details

    • values

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