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

riv.ehr.patientsummary._1.TimingEvent Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version

package riv.ehr.patientsummary._1;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for TimingEvent. * *

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

*

 * <simpleType name="TimingEvent">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="HS"/>
 *     <enumeration value="AC"/>
 *     <enumeration value="ACM"/>
 *     <enumeration value="ACD"/>
 *     <enumeration value="ACV"/>
 *     <enumeration value="IC"/>
 *     <enumeration value="ICM"/>
 *     <enumeration value="ICD"/>
 *     <enumeration value="ICV"/>
 *     <enumeration value="PC"/>
 *     <enumeration value="PCM"/>
 *     <enumeration value="PCD"/>
 *     <enumeration value="PCV"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "TimingEvent") @XmlEnum public enum TimingEvent { HS, AC, ACM, ACD, ACV, IC, ICM, ICD, ICV, PC, PCM, PCD, PCV; public String value() { return name(); } public static TimingEvent fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy