Package us.zoom.sdk
Enum Class ShareSettingType
- All Implemented Interfaces:
Serializable
,Comparable<ShareSettingType>
,Constable
Enumeration of sharing types.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionOnly one participant can share at a time.Anyone can share, but only one can share at a moment, and only the host can start sharing when another user is sharing.Only host can share.Multi participant can share at a moment.Unknown -
Method Summary
Modifier and TypeMethodDescriptionstatic ShareSettingType
Returns the enum constant of this class with the specified name.static ShareSettingType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNKNOWN
Unknown -
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
Only host can share. -
ANYONE_GRAB
Only one participant can share at a time. And anyone can start sharing when someone else is sharing. -
MULTI_SHARE
Multi participant can share at a moment.
-
-
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
-