package org.hl7.v3; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for LicensedEntityRole. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="LicensedEntityRole"> * <restriction base="{urn:hl7-org:v3}cs"> * <enumeration value="LIC"/> * <enumeration value="NOT"/> * <enumeration value="PROV"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "LicensedEntityRole") @XmlEnum public enum LicensedEntityRole { LIC, NOT, PROV; public String value() { return name(); } public static LicensedEntityRole fromValue(String v) { return valueOf(v); } }