
ihe.iti.svs._2008.XLabSpecimenCollectionProviders 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.
package ihe.iti.svs._2008;
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:ihe:iti:svs:2008}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")
@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