Package io.jmix.ui.component
Enum Class BrowserFrame.Allow
- All Implemented Interfaces:
Serializable
,Comparable<BrowserFrame.Allow>
,Constable
- Enclosing interface:
- BrowserFrame
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 ConstantDescriptionControls 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 TypeMethodDescriptiongetValue()
static BrowserFrame.Allow
Returns the enum constant of this class with the specified name.static BrowserFrame.Allow[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
AUTOPLAY
Controls whether the current document is allowed to autoplay media requested through the interface. -
CAMERA
Controls whether the current document is allowed to use video input devices. -
DOCUMENT_DOMAIN
Controls whether the current document is allowed to set document.domain. -
ENCRYPTED_MEDIA
Controls whether the current document is allowed to use the Encrypted Media Extensions API (EME). -
FULLSCREEN
Controls whether the current document is allowed to use Element.requestFullScreen(). -
GEOLOCATION
Controls whether the current document is allowed to use the Geolocation Interface. -
MICROPHONE
Controls whether the current document is allowed to use audio input devices. -
MIDI
Controls whether the current document is allowed to use the Web MIDI API. -
PAYMENT
Controls whether the current document is allowed to use the Payment Request API. -
VR
Controls whether the current document is allowed to use the WebVR API.
-
-
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
-
getValue
-