riv.ehr.patientsummary._1.TelecommunicationAddressUse Maven / Gradle / Ivy
package riv.ehr.patientsummary._1;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for TelecommunicationAddressUse.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="TelecommunicationAddressUse">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="H"/>
* <enumeration value="HP"/>
* <enumeration value="HV"/>
* <enumeration value="WP"/>
* <enumeration value="DIR"/>
* <enumeration value="PUB"/>
* <enumeration value="BAD"/>
* <enumeration value="TMP"/>
* <enumeration value="AS"/>
* <enumeration value="EC"/>
* <enumeration value="MC"/>
* <enumeration value="PG"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "TelecommunicationAddressUse")
@XmlEnum
public enum TelecommunicationAddressUse {
H,
HP,
HV,
WP,
DIR,
PUB,
BAD,
TMP,
AS,
EC,
MC,
PG;
public String value() {
return name();
}
public static TelecommunicationAddressUse fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy