-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum VideoPreviewOption extends Enum<VideoPreviewOption>
Video preview option enables or disables the video preview dialog.
-
-
Field Summary
Fields Modifier and Type Field Description private final Integer
value
-
Enum Constant Summary
Enum Constants Enum Constant Description ZmCCVideoPreviewOptionDefault
ZmCCVideoPreviewOptionDefault: Show the video preview dialog.
ZmCCVideoPreviewOptionNoPreviewWithCameraOn
ZmCCVideoPreviewOptionNoPreviewWithCameraOn: Disable the video preview dialog and turn the camera on when a user enters video call.
ZmCCVideoPreviewOptionNoPreviewWithCameraOff
ZmCCVideoPreviewOptionNoPreviewWithCameraOff: Disable video preview dialog and turn the camera off when a user enters video call.
-
Method Summary
Modifier and Type Method Description final VideoPreviewOption
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<VideoPreviewOption>
values()
Returns an array containing the constants of this enum type, in the order they're declared. final Integer
getValue()
-
-
Method Detail
-
valueOf
final VideoPreviewOption valueOf(String value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
values
final Array<VideoPreviewOption> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getValue
final Integer getValue()
-
-
-
-