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