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