Package adalid.core.enums
Enum EmbeddedDocumentSandbox
- java.lang.Object
-
- java.lang.Enum<EmbeddedDocumentSandbox>
-
- adalid.core.enums.EmbeddedDocumentSandbox
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<EmbeddedDocumentSandbox>
public enum EmbeddedDocumentSandbox extends java.lang.Enum<EmbeddedDocumentSandbox>
- Author:
- Jorge Campins
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetAttributeValue()static EmbeddedDocumentSandboxvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EmbeddedDocumentSandbox[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNSPECIFIED
public static final EmbeddedDocumentSandbox UNSPECIFIED
-
ALLOW_FORMS
public static final EmbeddedDocumentSandbox ALLOW_FORMS
-
ALLOW_MODALS
public static final EmbeddedDocumentSandbox ALLOW_MODALS
-
ALLOW_ORIENTATION_LOCK
public static final EmbeddedDocumentSandbox ALLOW_ORIENTATION_LOCK
-
ALLOW_POINTER_LOCK
public static final EmbeddedDocumentSandbox ALLOW_POINTER_LOCK
-
ALLOW_POPUPS
public static final EmbeddedDocumentSandbox ALLOW_POPUPS
-
ALLOW_POPUPS_TO_ESCAPE_SANDBOX
public static final EmbeddedDocumentSandbox ALLOW_POPUPS_TO_ESCAPE_SANDBOX
-
ALLOW_PRESENTATION
public static final EmbeddedDocumentSandbox ALLOW_PRESENTATION
-
ALLOW_SAME_ORIGIN
public static final EmbeddedDocumentSandbox ALLOW_SAME_ORIGIN
-
ALLOW_SCRIPTS
public static final EmbeddedDocumentSandbox ALLOW_SCRIPTS
-
ALLOW_TOP_NAVIGATION
public static final EmbeddedDocumentSandbox ALLOW_TOP_NAVIGATION
-
ALLOW_TOP_NAVIGATION_BY_USER_ACTIVATION
public static final EmbeddedDocumentSandbox ALLOW_TOP_NAVIGATION_BY_USER_ACTIVATION
-
-
Method Detail
-
values
public static EmbeddedDocumentSandbox[] 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 (EmbeddedDocumentSandbox c : EmbeddedDocumentSandbox.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EmbeddedDocumentSandbox 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 namejava.lang.NullPointerException- if the argument is null
-
getAttributeValue
public java.lang.String getAttributeValue()
-
-