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