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

riv.ehr.patientsummary._1.IdentifierReliability 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 IdentifierReliability. * *

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

*

 * <simpleType name="IdentifierReliability">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="ISS"/>
 *     <enumeration value="VER"/>
 *     <enumeration value="UNV"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "IdentifierReliability") @XmlEnum public enum IdentifierReliability { ISS, VER, UNV; public String value() { return name(); } public static IdentifierReliability fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy