riv.ehr.patientsummary._1.UpdateMode Maven / Gradle / Ivy
package riv.ehr.patientsummary._1;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for UpdateMode.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="UpdateMode">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="A"/>
* <enumeration value="AU"/>
* <enumeration value="U"/>
* <enumeration value="R"/>
* <enumeration value="I"/>
* <enumeration value="D"/>
* <enumeration value="K"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "UpdateMode")
@XmlEnum
public enum UpdateMode {
A,
AU,
U,
R,
I,
D,
K;
public String value() {
return name();
}
public static UpdateMode fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy