package org.hl7.v3; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for State. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="State"> * <restriction base="{urn:hl7-org:v3}cs"> * <enumeration value="STATE"/> * <enumeration value="NAT"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "State") @XmlEnum public enum State { STATE, NAT; public String value() { return name(); } public static State fromValue(String v) { return valueOf(v); } }