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