Package us.zoom.sdk
Enum Class ZoomVideoSDKVideoSubscribeFailReason
java.lang.Object
java.lang.Enum<ZoomVideoSDKVideoSubscribeFailReason>
us.zoom.sdk.ZoomVideoSDKVideoSubscribeFailReason
- All Implemented Interfaces:
Serializable
,Comparable<ZoomVideoSDKVideoSubscribeFailReason>
,Constable
- Brief Description:
- Enumerates the reasons for a failed video subscription attempt.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe subscription attempt failed because has already subscribed to a 1080P or 720P video stream.The subscription attempt failed because has exceeded the maximum allowed subscription limit.The subscription attempt failed because has already subscribed to one shared video streams.The subscription attempt failed because has already subscribed to shared video stream.No subscription failure (initial state).The subscription attempt failed because because subscription to 1080p is not supported.The subscription attempt failed because subscription requests were made too frequently in a short period of time. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static ZoomVideoSDKVideoSubscribeFailReason[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
ZoomVideoSDKSubscribeFailReason_None
No subscription failure (initial state). -
ZoomVideoSDKSubscribeFailReason_NotSupport1080P
public static final ZoomVideoSDKVideoSubscribeFailReason ZoomVideoSDKSubscribeFailReason_NotSupport1080PThe subscription attempt failed because because subscription to 1080p is not supported. -
ZoomVideoSDKSubscribeFailReason_HasSubscribeExceededLimit
public static final ZoomVideoSDKVideoSubscribeFailReason ZoomVideoSDKSubscribeFailReason_HasSubscribeExceededLimitThe subscription attempt failed because has exceeded the maximum allowed subscription limit. -
ZoomVideoSDKSubscribeFailReason_HasSubscribe1080POr720P
public static final ZoomVideoSDKVideoSubscribeFailReason ZoomVideoSDKSubscribeFailReason_HasSubscribe1080POr720PThe subscription attempt failed because has already subscribed to a 1080P or 720P video stream. -
ZoomVideoSDKSubscribeFailReason_TooFrequentCall
public static final ZoomVideoSDKVideoSubscribeFailReason ZoomVideoSDKSubscribeFailReason_TooFrequentCallThe subscription attempt failed because subscription requests were made too frequently in a short period of time.
-
-
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
-