Enum Class BrowserFrame.Allow

java.lang.Object
java.lang.Enum<BrowserFrame.Allow>
io.jmix.ui.component.BrowserFrame.Allow
All Implemented Interfaces:
Serializable, Comparable<BrowserFrame.Allow>, Constable
Enclosing interface:
BrowserFrame

public static enum BrowserFrame.Allow extends Enum<BrowserFrame.Allow>
Standard values of the attribute allow of iframe HTML element.
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Controls whether the current document is allowed to autoplay media requested through the interface.
    Controls whether the current document is allowed to use video input devices.
    Controls whether the current document is allowed to set document.domain.
    Controls whether the current document is allowed to use the Encrypted Media Extensions API (EME).
    Controls whether the current document is allowed to use Element.requestFullScreen().
    Controls whether the current document is allowed to use the Geolocation Interface.
    Controls whether the current document is allowed to use audio input devices.
    Controls whether the current document is allowed to use the Web MIDI API.
    Controls whether the current document is allowed to use the Payment Request API.
    Controls whether the current document is allowed to use the WebVR API.
  • Method Summary

    Modifier and Type
    Method
    Description
     
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • AUTOPLAY

      public static final BrowserFrame.Allow AUTOPLAY
      Controls whether the current document is allowed to autoplay media requested through the interface.
    • CAMERA

      public static final BrowserFrame.Allow CAMERA
      Controls whether the current document is allowed to use video input devices.
    • DOCUMENT_DOMAIN

      public static final BrowserFrame.Allow DOCUMENT_DOMAIN
      Controls whether the current document is allowed to set document.domain.
    • ENCRYPTED_MEDIA

      public static final BrowserFrame.Allow ENCRYPTED_MEDIA
      Controls whether the current document is allowed to use the Encrypted Media Extensions API (EME).
    • FULLSCREEN

      public static final BrowserFrame.Allow FULLSCREEN
      Controls whether the current document is allowed to use Element.requestFullScreen().
    • GEOLOCATION

      public static final BrowserFrame.Allow GEOLOCATION
      Controls whether the current document is allowed to use the Geolocation Interface.
    • MICROPHONE

      public static final BrowserFrame.Allow MICROPHONE
      Controls whether the current document is allowed to use audio input devices.
    • MIDI

      public static final BrowserFrame.Allow MIDI
      Controls whether the current document is allowed to use the Web MIDI API.
    • PAYMENT

      public static final BrowserFrame.Allow PAYMENT
      Controls whether the current document is allowed to use the Payment Request API.
    • VR

      public static final BrowserFrame.Allow VR
      Controls whether the current document is allowed to use the WebVR API.
  • Method Details

    • values

      public static BrowserFrame.Allow[] 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 BrowserFrame.Allow 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
    • getValue

      public String getValue()