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

org.hl7.v3.XLabSpecimenCollectionProviders 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.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.12.15 at 11:19:24 AM PST 
//


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 x_LabSpecimenCollectionProviders. * *

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

*

 * <simpleType name="x_LabSpecimenCollectionProviders">
 *   <restriction base="{urn:hl7-org:v3}cs">
 *     <enumeration value="communityLaboratory"/>
 *     <enumeration value="homeHealth"/>
 *     <enumeration value="laboratory"/>
 *     <enumeration value="pathologist"/>
 *     <enumeration value="phlebotomist"/>
 *     <enumeration value="self"/>
 *     <enumeration value="thirdParty"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "x_LabSpecimenCollectionProviders", namespace = "urn:hl7-org:v3") @XmlEnum public enum XLabSpecimenCollectionProviders { @XmlEnumValue("communityLaboratory") COMMUNITY_LABORATORY("communityLaboratory"), @XmlEnumValue("homeHealth") HOME_HEALTH("homeHealth"), @XmlEnumValue("laboratory") LABORATORY("laboratory"), @XmlEnumValue("pathologist") PATHOLOGIST("pathologist"), @XmlEnumValue("phlebotomist") PHLEBOTOMIST("phlebotomist"), @XmlEnumValue("self") SELF("self"), @XmlEnumValue("thirdParty") THIRD_PARTY("thirdParty"); private final String value; XLabSpecimenCollectionProviders(String v) { value = v; } public String value() { return value; } public static XLabSpecimenCollectionProviders fromValue(String v) { for (XLabSpecimenCollectionProviders c: XLabSpecimenCollectionProviders.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy