
org.w3._1999.xhtml.TRules Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quick Show documentation
Show all versions of quick Show documentation
The quick library for the Clinical Quality Language Java reference implementation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.01.12 at 11:04:27 AM MST
//
package org.w3._1999.xhtml;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for TRules.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="TRules">
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
* <enumeration value="none"/>
* <enumeration value="groups"/>
* <enumeration value="rows"/>
* <enumeration value="cols"/>
* <enumeration value="all"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "TRules")
@XmlEnum
public enum TRules {
@XmlEnumValue("none")
NONE("none"),
@XmlEnumValue("groups")
GROUPS("groups"),
@XmlEnumValue("rows")
ROWS("rows"),
@XmlEnumValue("cols")
COLS("cols"),
@XmlEnumValue("all")
ALL("all");
private final String value;
TRules(String v) {
value = v;
}
public String value() {
return value;
}
public static TRules fromValue(String v) {
for (TRules c: TRules.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}