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