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