
ihe.iti.svs._2008.ActSpecObsDilutionCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ihe-iti Show documentation
Show all versions of ihe-iti Show documentation
Codegen for IHE ITI Profiles.
package ihe.iti.svs._2008;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ActSpecObsDilutionCode.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="ActSpecObsDilutionCode">
* <restriction base="{urn:ihe:iti:svs:2008}cs">
* <enumeration value="DILUTION"/>
* <enumeration value="AUTO-HIGH"/>
* <enumeration value="AUTO-LOW"/>
* <enumeration value="PRE"/>
* <enumeration value="RERUN"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "ActSpecObsDilutionCode")
@XmlEnum
public enum ActSpecObsDilutionCode {
DILUTION("DILUTION"),
@XmlEnumValue("AUTO-HIGH")
AUTO_HIGH("AUTO-HIGH"),
@XmlEnumValue("AUTO-LOW")
AUTO_LOW("AUTO-LOW"),
PRE("PRE"),
RERUN("RERUN");
private final String value;
ActSpecObsDilutionCode(String v) {
value = v;
}
public String value() {
return value;
}
public static ActSpecObsDilutionCode fromValue(String v) {
for (ActSpecObsDilutionCode c: ActSpecObsDilutionCode.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy