Package us.zoom.sdk

Enum VideoScene

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<VideoScene>

    public enum VideoScene
    extends java.lang.Enum<VideoScene>
    • Enum Constant Detail

      • ACTIVE_SPEAKER

        public static final VideoScene ACTIVE_SPEAKER
      • SPOTLIGHT

        public static final VideoScene SPOTLIGHT
      • SIGN_LANGUAGE

        public static final VideoScene SIGN_LANGUAGE
      • IMMERSIVE

        public static final VideoScene IMMERSIVE
      • HOST_WILL_BE_BACK

        public static final VideoScene HOST_WILL_BE_BACK
      • CLOUD_DOCUMENT_UI

        public static final VideoScene CLOUD_DOCUMENT_UI
    • Method Detail

      • values

        public static VideoScene[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (VideoScene c : VideoScene.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static VideoScene valueOf​(java.lang.String name)
        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.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null