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