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