![JAR search and dependency download from the Maven repository](/logo.png)
org.w3._1999.xhtml.SandBoxAllow Maven / Gradle / Ivy
//
// Diese Datei wurde mit der Eclipse Implementation of JAXB, v4.0.2 generiert
// Siehe https://eclipse-ee4j.github.io/jaxb-ri
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
//
package org.w3._1999.xhtml;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlEnumValue;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java-Klasse für sandBoxAllow.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
{@code
*
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "sandBoxAllow")
@XmlEnum
public enum SandBoxAllow {
@XmlEnumValue("allow-same-origin")
ALLOW_SAME_ORIGIN("allow-same-origin"),
@XmlEnumValue("allow-forms")
ALLOW_FORMS("allow-forms"),
@XmlEnumValue("allow-scripts")
ALLOW_SCRIPTS("allow-scripts"),
@XmlEnumValue("allow-top-navigation")
ALLOW_TOP_NAVIGATION("allow-top-navigation");
private final String value;
SandBoxAllow(String v) {
value = v;
}
public String value() {
return value;
}
public static SandBoxAllow fromValue(String v) {
for (SandBoxAllow c: SandBoxAllow.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy