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

generated.HL7CommitteeIDInRIM Maven / Gradle / Ivy

There is a newer version: 0.10.0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2015.06.09 at 07:53:44 PM PDT 
//


package generated;

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


/**
 * 

Java class for HL7CommitteeIDInRIM. * *

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

*

 * <simpleType name="HL7CommitteeIDInRIM">
 *   <restriction base="{}cs">
 *     <enumeration value="C02"/>
 *     <enumeration value="C06"/>
 *     <enumeration value="C09"/>
 *     <enumeration value="C00"/>
 *     <enumeration value="C04"/>
 *     <enumeration value="C03"/>
 *     <enumeration value="C12"/>
 *     <enumeration value="C10"/>
 *     <enumeration value="C20"/>
 *     <enumeration value="C01"/>
 *     <enumeration value="C21"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "HL7CommitteeIDInRIM") @XmlEnum public enum HL7CommitteeIDInRIM { @XmlEnumValue("C02") C_02("C02"), @XmlEnumValue("C06") C_06("C06"), @XmlEnumValue("C09") C_09("C09"), @XmlEnumValue("C00") C_00("C00"), @XmlEnumValue("C04") C_04("C04"), @XmlEnumValue("C03") C_03("C03"), @XmlEnumValue("C12") C_12("C12"), @XmlEnumValue("C10") C_10("C10"), @XmlEnumValue("C20") C_20("C20"), @XmlEnumValue("C01") C_01("C01"), @XmlEnumValue("C21") C_21("C21"); private final String value; HL7CommitteeIDInRIM(String v) { value = v; } public String value() { return value; } public static HL7CommitteeIDInRIM fromValue(String v) { for (HL7CommitteeIDInRIM c: HL7CommitteeIDInRIM.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy