All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.w3._1999.xhtml.Scope 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 scope. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

{@code
 * 
 *   
 *     
 *     
 *     
 *     
 *   
 * 
 * }
* */ @XmlType(name = "scope") @XmlEnum public enum Scope { @XmlEnumValue("col") COL("col"), @XmlEnumValue("colgroup") COLGROUP("colgroup"), @XmlEnumValue("row") ROW("row"), @XmlEnumValue("rowgroup") ROWGROUP("rowgroup"); private final String value; Scope(String v) { value = v; } public String value() { return value; } public static Scope fromValue(String v) { for (Scope c: Scope.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy