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

org.w3._1999.xhtml.TRules Maven / Gradle / Ivy

Go to download

The quick library for the Clinical Quality Language Java reference implementation

There is a newer version: 3.18.0
Show newest version
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2023.12.08 at 08:47:56 AM MST 
//


package org.w3._1999.xhtml;

import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlEnumValue;
import jakarta.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); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy