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

org.docbook.model.Performance Maven / Gradle / Ivy

The newest version!

package org.docbook.model;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for performance. * *

The following schema fragment specifies the expected content contained within this class. *

*

 * <simpleType name="performance">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
 *     <enumeration value="optional"/>
 *     <enumeration value="required"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "performance") @XmlEnum public enum Performance { @XmlEnumValue("optional") OPTIONAL("optional"), @XmlEnumValue("required") REQUIRED("required"); private final String value; Performance(String v) { value = v; } public String value() { return value; } public static Performance fromValue(String v) { for (Performance c: Performance.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy