
org.hl7.v3.HL7CommitteeIDInRIM Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ihe-iti Show documentation
Show all versions of ihe-iti Show documentation
Codegen for IHE ITI Profiles.
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.6
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2013.05.03 at 09:18:53 PM PDT
//
package org.hl7.v3;
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="{urn:hl7-org:v3}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