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