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

org.w3._1999.xhtml.Shape 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 shape. * *

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

{@code
 * 
 *   
 *     
 *     
 *     
 *     
 *   
 * 
 * }
* */ @XmlType(name = "shape") @XmlEnum public enum Shape { @XmlEnumValue("rect") RECT("rect"), @XmlEnumValue("circle") CIRCLE("circle"), @XmlEnumValue("poly") POLY("poly"), @XmlEnumValue("default") DEFAULT("default"); private final String value; Shape(String v) { value = v; } public String value() { return value; } public static Shape fromValue(String v) { for (Shape c: Shape.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy