org.hl7.fhir.r4.model.Enumerations Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.hl7.fhir.r4 Show documentation
Show all versions of org.hl7.fhir.r4 Show documentation
Builds the hapi fhir r4. Requires hapi-fhir-base and hapi-fhir-utilities be built first and be
excluded from any other poms requiring it.
The newest version!
package org.hl7.fhir.r4.model;
import org.hl7.fhir.exceptions.FHIRException;
public class Enumerations {
// In here:
// AbstractType: A list of the base types defined by this version of the FHIR specification - types that are defined, but for which only specializations actually are created.
// AdministrativeGender: The gender of a person used for administrative purposes.
// AgeUnits: A valueSet of UCUM codes for representing age value units.
// BindingStrength: Indication of the degree of conformance expectations associated with a binding.
// ConceptMapEquivalence: The degree of equivalence between concepts.
// DataAbsentReason: Used to specify why the normally expected content of the data element is missing.
// DataType: A version specific list of the data types defined by the FHIR specification for use as an element type (any of the FHIR defined data types).
// DefinitionResourceType: A list of all the definition resource types defined in this version of the FHIR specification.
// DocumentReferenceStatus: The status of the document reference.
// EventResourceType: A list of all the event resource types defined in this version of the FHIR specification.
// FHIRAllTypes: A list of all the concrete types defined in this version of the FHIR specification - Abstract Types, Data Types and Resource Types.
// FHIRDefinedType: A list of all the concrete types defined in this version of the FHIR specification - Data Types and Resource Types.
// FHIRVersion: All published FHIR Versions.
// KnowledgeResourceType: A list of all the knowledge resource types defined in this version of the FHIR specification.
// MessageEvent: One of the message events defined as part of this version of FHIR.
// NoteType: The presentation types of notes.
// PublicationStatus: The lifecycle status of an artifact.
// RemittanceOutcome: The outcome of the processing.
// RequestResourceType: A list of all the request resource types defined in this version of the FHIR specification.
// ResourceType: One of the resource types defined as part of this version of FHIR.
// SearchParamType: Data types allowed to be used for search parameters.
// SpecialValues: A set of generally useful codes defined so they can be included in value sets.
public enum AbstractType {
/**
* A place holder that means any kind of data type
*/
TYPE,
/**
* A place holder that means any kind of resource
*/
ANY,
/**
* added to help the parsers
*/
NULL;
public static AbstractType fromCode(String codeString) throws FHIRException {
if (codeString == null || "".equals(codeString))
return null;
if ("Type".equals(codeString))
return TYPE;
if ("Any".equals(codeString))
return ANY;
throw new FHIRException("Unknown AbstractType code '" + codeString + "'");
}
public String toCode() {
switch (this) {
case TYPE:
return "Type";
case ANY:
return "Any";
case NULL:
return null;
default:
return "?";
}
}
public String getSystem() {
switch (this) {
case TYPE:
return "http://hl7.org/fhir/abstract-types";
case ANY:
return "http://hl7.org/fhir/abstract-types";
case NULL:
return null;
default:
return "?";
}
}
public String getDefinition() {
switch (this) {
case TYPE:
return "A place holder that means any kind of data type";
case ANY:
return "A place holder that means any kind of resource";
case NULL:
return null;
default:
return "?";
}
}
public String getDisplay() {
switch (this) {
case TYPE:
return "Type";
case ANY:
return "Any";
case NULL:
return null;
default:
return "?";
}
}
}
public static class AbstractTypeEnumFactory implements EnumFactory {
public AbstractType fromCode(String codeString) throws IllegalArgumentException {
if (codeString == null || "".equals(codeString))
if (codeString == null || "".equals(codeString))
return null;
if ("Type".equals(codeString))
return AbstractType.TYPE;
if ("Any".equals(codeString))
return AbstractType.ANY;
throw new IllegalArgumentException("Unknown AbstractType code '" + codeString + "'");
}
public Enumeration fromType(PrimitiveType> code) throws FHIRException {
if (code == null)
return null;
if (code.isEmpty())
return new Enumeration(this, AbstractType.NULL, code);
String codeString = code.asStringValue();
if (codeString == null || "".equals(codeString))
return new Enumeration(this, AbstractType.NULL, code);
if ("Type".equals(codeString))
return new Enumeration(this, AbstractType.TYPE, code);
if ("Any".equals(codeString))
return new Enumeration(this, AbstractType.ANY, code);
throw new FHIRException("Unknown AbstractType code '" + codeString + "'");
}
public String toCode(AbstractType code) {
if (code == AbstractType.TYPE)
return "Type";
if (code == AbstractType.ANY)
return "Any";
return "?";
}
public String toSystem(AbstractType code) {
return code.getSystem();
}
}
public enum AdministrativeGender {
/**
* Male.
*/
MALE,
/**
* Female.
*/
FEMALE,
/**
* Other.
*/
OTHER,
/**
* Unknown.
*/
UNKNOWN,
/**
* added to help the parsers
*/
NULL;
public static AdministrativeGender fromCode(String codeString) throws FHIRException {
if (codeString == null || "".equals(codeString))
return null;
if ("male".equals(codeString))
return MALE;
if ("female".equals(codeString))
return FEMALE;
if ("other".equals(codeString))
return OTHER;
if ("unknown".equals(codeString))
return UNKNOWN;
throw new FHIRException("Unknown AdministrativeGender code '" + codeString + "'");
}
public String toCode() {
switch (this) {
case MALE:
return "male";
case FEMALE:
return "female";
case OTHER:
return "other";
case UNKNOWN:
return "unknown";
case NULL:
return null;
default:
return "?";
}
}
public String getSystem() {
switch (this) {
case MALE:
return "http://hl7.org/fhir/administrative-gender";
case FEMALE:
return "http://hl7.org/fhir/administrative-gender";
case OTHER:
return "http://hl7.org/fhir/administrative-gender";
case UNKNOWN:
return "http://hl7.org/fhir/administrative-gender";
case NULL:
return null;
default:
return "?";
}
}
public String getDefinition() {
switch (this) {
case MALE:
return "Male.";
case FEMALE:
return "Female.";
case OTHER:
return "Other.";
case UNKNOWN:
return "Unknown.";
case NULL:
return null;
default:
return "?";
}
}
public String getDisplay() {
switch (this) {
case MALE:
return "Male";
case FEMALE:
return "Female";
case OTHER:
return "Other";
case UNKNOWN:
return "Unknown";
case NULL:
return null;
default:
return "?";
}
}
}
public static class AdministrativeGenderEnumFactory implements EnumFactory {
public AdministrativeGender fromCode(String codeString) throws IllegalArgumentException {
if (codeString == null || "".equals(codeString))
if (codeString == null || "".equals(codeString))
return null;
if ("male".equals(codeString))
return AdministrativeGender.MALE;
if ("female".equals(codeString))
return AdministrativeGender.FEMALE;
if ("other".equals(codeString))
return AdministrativeGender.OTHER;
if ("unknown".equals(codeString))
return AdministrativeGender.UNKNOWN;
throw new IllegalArgumentException("Unknown AdministrativeGender code '" + codeString + "'");
}
public Enumeration fromType(PrimitiveType> code) throws FHIRException {
if (code == null)
return null;
if (code.isEmpty())
return new Enumeration(this, AdministrativeGender.NULL, code);
String codeString = code.asStringValue();
if (codeString == null || "".equals(codeString))
return new Enumeration(this, AdministrativeGender.NULL, code);
if ("male".equals(codeString))
return new Enumeration(this, AdministrativeGender.MALE, code);
if ("female".equals(codeString))
return new Enumeration(this, AdministrativeGender.FEMALE, code);
if ("other".equals(codeString))
return new Enumeration(this, AdministrativeGender.OTHER, code);
if ("unknown".equals(codeString))
return new Enumeration(this, AdministrativeGender.UNKNOWN, code);
throw new FHIRException("Unknown AdministrativeGender code '" + codeString + "'");
}
public String toCode(AdministrativeGender code) {
if (code == AdministrativeGender.MALE)
return "male";
if (code == AdministrativeGender.FEMALE)
return "female";
if (code == AdministrativeGender.OTHER)
return "other";
if (code == AdministrativeGender.UNKNOWN)
return "unknown";
return "?";
}
public String toSystem(AdministrativeGender code) {
return code.getSystem();
}
}
public enum AgeUnits {
/**
* null
*/
MIN,
/**
* null
*/
H,
/**
* null
*/
D,
/**
* null
*/
WK,
/**
* null
*/
MO,
/**
* null
*/
A,
/**
* added to help the parsers
*/
NULL;
public static AgeUnits fromCode(String codeString) throws FHIRException {
if (codeString == null || "".equals(codeString))
return null;
if ("min".equals(codeString))
return MIN;
if ("h".equals(codeString))
return H;
if ("d".equals(codeString))
return D;
if ("wk".equals(codeString))
return WK;
if ("mo".equals(codeString))
return MO;
if ("a".equals(codeString))
return A;
throw new FHIRException("Unknown AgeUnits code '" + codeString + "'");
}
public String toCode() {
switch (this) {
case MIN:
return "min";
case H:
return "h";
case D:
return "d";
case WK:
return "wk";
case MO:
return "mo";
case A:
return "a";
case NULL:
return null;
default:
return "?";
}
}
public String getSystem() {
switch (this) {
case MIN:
return "http://unitsofmeasure.org";
case H:
return "http://unitsofmeasure.org";
case D:
return "http://unitsofmeasure.org";
case WK:
return "http://unitsofmeasure.org";
case MO:
return "http://unitsofmeasure.org";
case A:
return "http://unitsofmeasure.org";
case NULL:
return null;
default:
return "?";
}
}
public String getDefinition() {
switch (this) {
case MIN:
return "";
case H:
return "";
case D:
return "";
case WK:
return "";
case MO:
return "";
case A:
return "";
case NULL:
return null;
default:
return "?";
}
}
public String getDisplay() {
switch (this) {
case MIN:
return "Minute";
case H:
return "Hour";
case D:
return "Day";
case WK:
return "Week";
case MO:
return "Month";
case A:
return "Year";
case NULL:
return null;
default:
return "?";
}
}
}
public static class AgeUnitsEnumFactory implements EnumFactory {
public AgeUnits fromCode(String codeString) throws IllegalArgumentException {
if (codeString == null || "".equals(codeString))
if (codeString == null || "".equals(codeString))
return null;
if ("min".equals(codeString))
return AgeUnits.MIN;
if ("h".equals(codeString))
return AgeUnits.H;
if ("d".equals(codeString))
return AgeUnits.D;
if ("wk".equals(codeString))
return AgeUnits.WK;
if ("mo".equals(codeString))
return AgeUnits.MO;
if ("a".equals(codeString))
return AgeUnits.A;
throw new IllegalArgumentException("Unknown AgeUnits code '" + codeString + "'");
}
public Enumeration fromType(PrimitiveType> code) throws FHIRException {
if (code == null)
return null;
if (code.isEmpty())
return new Enumeration(this, AgeUnits.NULL, code);
String codeString = code.asStringValue();
if (codeString == null || "".equals(codeString))
return new Enumeration(this, AgeUnits.NULL, code);
if ("min".equals(codeString))
return new Enumeration(this, AgeUnits.MIN, code);
if ("h".equals(codeString))
return new Enumeration(this, AgeUnits.H, code);
if ("d".equals(codeString))
return new Enumeration(this, AgeUnits.D, code);
if ("wk".equals(codeString))
return new Enumeration(this, AgeUnits.WK, code);
if ("mo".equals(codeString))
return new Enumeration(this, AgeUnits.MO, code);
if ("a".equals(codeString))
return new Enumeration(this, AgeUnits.A, code);
throw new FHIRException("Unknown AgeUnits code '" + codeString + "'");
}
public String toCode(AgeUnits code) {
if (code == AgeUnits.MIN)
return "min";
if (code == AgeUnits.H)
return "h";
if (code == AgeUnits.D)
return "d";
if (code == AgeUnits.WK)
return "wk";
if (code == AgeUnits.MO)
return "mo";
if (code == AgeUnits.A)
return "a";
return "?";
}
public String toSystem(AgeUnits code) {
return code.getSystem();
}
}
public enum BindingStrength {
/**
* To be conformant, the concept in this element SHALL be from the specified
* value set.
*/
REQUIRED,
/**
* To be conformant, the concept in this element SHALL be from the specified
* value set if any of the codes within the value set can apply to the concept
* being communicated. If the value set does not cover the concept (based on
* human review), alternate codings (or, data type allowing, text) may be
* included instead.
*/
EXTENSIBLE,
/**
* Instances are encouraged to draw from the specified codes for
* interoperability purposes but are not required to do so to be considered
* conformant.
*/
PREFERRED,
/**
* Instances are not expected or even encouraged to draw from the specified
* value set. The value set merely provides examples of the types of concepts
* intended to be included.
*/
EXAMPLE,
/**
* added to help the parsers
*/
NULL;
public static BindingStrength fromCode(String codeString) throws FHIRException {
if (codeString == null || "".equals(codeString))
return null;
if ("required".equals(codeString))
return REQUIRED;
if ("extensible".equals(codeString))
return EXTENSIBLE;
if ("preferred".equals(codeString))
return PREFERRED;
if ("example".equals(codeString))
return EXAMPLE;
throw new FHIRException("Unknown BindingStrength code '" + codeString + "'");
}
public String toCode() {
switch (this) {
case REQUIRED:
return "required";
case EXTENSIBLE:
return "extensible";
case PREFERRED:
return "preferred";
case EXAMPLE:
return "example";
case NULL:
return null;
default:
return "?";
}
}
public String getSystem() {
switch (this) {
case REQUIRED:
return "http://hl7.org/fhir/binding-strength";
case EXTENSIBLE:
return "http://hl7.org/fhir/binding-strength";
case PREFERRED:
return "http://hl7.org/fhir/binding-strength";
case EXAMPLE:
return "http://hl7.org/fhir/binding-strength";
case NULL:
return null;
default:
return "?";
}
}
public String getDefinition() {
switch (this) {
case REQUIRED:
return "To be conformant, the concept in this element SHALL be from the specified value set.";
case EXTENSIBLE:
return "To be conformant, the concept in this element SHALL be from the specified value set if any of the codes within the value set can apply to the concept being communicated. If the value set does not cover the concept (based on human review), alternate codings (or, data type allowing, text) may be included instead.";
case PREFERRED:
return "Instances are encouraged to draw from the specified codes for interoperability purposes but are not required to do so to be considered conformant.";
case EXAMPLE:
return "Instances are not expected or even encouraged to draw from the specified value set. The value set merely provides examples of the types of concepts intended to be included.";
case NULL:
return null;
default:
return "?";
}
}
public String getDisplay() {
switch (this) {
case REQUIRED:
return "Required";
case EXTENSIBLE:
return "Extensible";
case PREFERRED:
return "Preferred";
case EXAMPLE:
return "Example";
case NULL:
return null;
default:
return "?";
}
}
}
public static class BindingStrengthEnumFactory implements EnumFactory {
public BindingStrength fromCode(String codeString) throws IllegalArgumentException {
if (codeString == null || "".equals(codeString))
if (codeString == null || "".equals(codeString))
return null;
if ("required".equals(codeString))
return BindingStrength.REQUIRED;
if ("extensible".equals(codeString))
return BindingStrength.EXTENSIBLE;
if ("preferred".equals(codeString))
return BindingStrength.PREFERRED;
if ("example".equals(codeString))
return BindingStrength.EXAMPLE;
throw new IllegalArgumentException("Unknown BindingStrength code '" + codeString + "'");
}
public Enumeration fromType(PrimitiveType> code) throws FHIRException {
if (code == null)
return null;
if (code.isEmpty())
return new Enumeration(this, BindingStrength.NULL, code);
String codeString = code.asStringValue();
if (codeString == null || "".equals(codeString))
return new Enumeration(this, BindingStrength.NULL, code);
if ("required".equals(codeString))
return new Enumeration(this, BindingStrength.REQUIRED, code);
if ("extensible".equals(codeString))
return new Enumeration(this, BindingStrength.EXTENSIBLE, code);
if ("preferred".equals(codeString))
return new Enumeration(this, BindingStrength.PREFERRED, code);
if ("example".equals(codeString))
return new Enumeration(this, BindingStrength.EXAMPLE, code);
throw new FHIRException("Unknown BindingStrength code '" + codeString + "'");
}
public String toCode(BindingStrength code) {
if (code == BindingStrength.REQUIRED)
return "required";
if (code == BindingStrength.EXTENSIBLE)
return "extensible";
if (code == BindingStrength.PREFERRED)
return "preferred";
if (code == BindingStrength.EXAMPLE)
return "example";
return "?";
}
public String toSystem(BindingStrength code) {
return code.getSystem();
}
}
public enum ConceptMapEquivalence {
/**
* The concepts are related to each other, and have at least some overlap in
* meaning, but the exact relationship is not known.
*/
RELATEDTO,
/**
* The definitions of the concepts mean the same thing (including when
* structural implications of meaning are considered) (i.e. extensionally
* identical).
*/
EQUIVALENT,
/**
* The definitions of the concepts are exactly the same (i.e. only grammatical
* differences) and structural implications of meaning are identical or
* irrelevant (i.e. intentionally identical).
*/
EQUAL,
/**
* The target mapping is wider in meaning than the source concept.
*/
WIDER,
/**
* The target mapping subsumes the meaning of the source concept (e.g. the
* source is-a target).
*/
SUBSUMES,
/**
* The target mapping is narrower in meaning than the source concept. The sense
* in which the mapping is narrower SHALL be described in the comments in this
* case, and applications should be careful when attempting to use these
* mappings operationally.
*/
NARROWER,
/**
* The target mapping specializes the meaning of the source concept (e.g. the
* target is-a source).
*/
SPECIALIZES,
/**
* The target mapping overlaps with the source concept, but both source and
* target cover additional meaning, or the definitions are imprecise and it is
* uncertain whether they have the same boundaries to their meaning. The sense
* in which the mapping is inexact SHALL be described in the comments in this
* case, and applications should be careful when attempting to use these
* mappings operationally.
*/
INEXACT,
/**
* There is no match for this concept in the target code system.
*/
UNMATCHED,
/**
* This is an explicit assertion that there is no mapping between the source and
* target concept.
*/
DISJOINT,
/**
* added to help the parsers
*/
NULL;
public static ConceptMapEquivalence fromCode(String codeString) throws FHIRException {
if (codeString == null || "".equals(codeString))
return null;
if ("relatedto".equals(codeString))
return RELATEDTO;
if ("equivalent".equals(codeString))
return EQUIVALENT;
if ("equal".equals(codeString))
return EQUAL;
if ("wider".equals(codeString))
return WIDER;
if ("subsumes".equals(codeString))
return SUBSUMES;
if ("narrower".equals(codeString))
return NARROWER;
if ("specializes".equals(codeString))
return SPECIALIZES;
if ("inexact".equals(codeString))
return INEXACT;
if ("unmatched".equals(codeString))
return UNMATCHED;
if ("disjoint".equals(codeString))
return DISJOINT;
throw new FHIRException("Unknown ConceptMapEquivalence code '" + codeString + "'");
}
public String toCode() {
switch (this) {
case RELATEDTO:
return "relatedto";
case EQUIVALENT:
return "equivalent";
case EQUAL:
return "equal";
case WIDER:
return "wider";
case SUBSUMES:
return "subsumes";
case NARROWER:
return "narrower";
case SPECIALIZES:
return "specializes";
case INEXACT:
return "inexact";
case UNMATCHED:
return "unmatched";
case DISJOINT:
return "disjoint";
case NULL:
return null;
default:
return "?";
}
}
public String getSystem() {
switch (this) {
case RELATEDTO:
return "http://hl7.org/fhir/concept-map-equivalence";
case EQUIVALENT:
return "http://hl7.org/fhir/concept-map-equivalence";
case EQUAL:
return "http://hl7.org/fhir/concept-map-equivalence";
case WIDER:
return "http://hl7.org/fhir/concept-map-equivalence";
case SUBSUMES:
return "http://hl7.org/fhir/concept-map-equivalence";
case NARROWER:
return "http://hl7.org/fhir/concept-map-equivalence";
case SPECIALIZES:
return "http://hl7.org/fhir/concept-map-equivalence";
case INEXACT:
return "http://hl7.org/fhir/concept-map-equivalence";
case UNMATCHED:
return "http://hl7.org/fhir/concept-map-equivalence";
case DISJOINT:
return "http://hl7.org/fhir/concept-map-equivalence";
case NULL:
return null;
default:
return "?";
}
}
public String getDefinition() {
switch (this) {
case RELATEDTO:
return "The concepts are related to each other, and have at least some overlap in meaning, but the exact relationship is not known.";
case EQUIVALENT:
return "The definitions of the concepts mean the same thing (including when structural implications of meaning are considered) (i.e. extensionally identical).";
case EQUAL:
return "The definitions of the concepts are exactly the same (i.e. only grammatical differences) and structural implications of meaning are identical or irrelevant (i.e. intentionally identical).";
case WIDER:
return "The target mapping is wider in meaning than the source concept.";
case SUBSUMES:
return "The target mapping subsumes the meaning of the source concept (e.g. the source is-a target).";
case NARROWER:
return "The target mapping is narrower in meaning than the source concept. The sense in which the mapping is narrower SHALL be described in the comments in this case, and applications should be careful when attempting to use these mappings operationally.";
case SPECIALIZES:
return "The target mapping specializes the meaning of the source concept (e.g. the target is-a source).";
case INEXACT:
return "The target mapping overlaps with the source concept, but both source and target cover additional meaning, or the definitions are imprecise and it is uncertain whether they have the same boundaries to their meaning. The sense in which the mapping is inexact SHALL be described in the comments in this case, and applications should be careful when attempting to use these mappings operationally.";
case UNMATCHED:
return "There is no match for this concept in the target code system.";
case DISJOINT:
return "This is an explicit assertion that there is no mapping between the source and target concept.";
case NULL:
return null;
default:
return "?";
}
}
public String getDisplay() {
switch (this) {
case RELATEDTO:
return "Related To";
case EQUIVALENT:
return "Equivalent";
case EQUAL:
return "Equal";
case WIDER:
return "Wider";
case SUBSUMES:
return "Subsumes";
case NARROWER:
return "Narrower";
case SPECIALIZES:
return "Specializes";
case INEXACT:
return "Inexact";
case UNMATCHED:
return "Unmatched";
case DISJOINT:
return "Disjoint";
case NULL:
return null;
default:
return "?";
}
}
}
public static class ConceptMapEquivalenceEnumFactory implements EnumFactory {
public ConceptMapEquivalence fromCode(String codeString) throws IllegalArgumentException {
if (codeString == null || "".equals(codeString))
if (codeString == null || "".equals(codeString))
return null;
if ("relatedto".equals(codeString))
return ConceptMapEquivalence.RELATEDTO;
if ("equivalent".equals(codeString))
return ConceptMapEquivalence.EQUIVALENT;
if ("equal".equals(codeString))
return ConceptMapEquivalence.EQUAL;
if ("wider".equals(codeString))
return ConceptMapEquivalence.WIDER;
if ("subsumes".equals(codeString))
return ConceptMapEquivalence.SUBSUMES;
if ("narrower".equals(codeString))
return ConceptMapEquivalence.NARROWER;
if ("specializes".equals(codeString))
return ConceptMapEquivalence.SPECIALIZES;
if ("inexact".equals(codeString))
return ConceptMapEquivalence.INEXACT;
if ("unmatched".equals(codeString))
return ConceptMapEquivalence.UNMATCHED;
if ("disjoint".equals(codeString))
return ConceptMapEquivalence.DISJOINT;
throw new IllegalArgumentException("Unknown ConceptMapEquivalence code '" + codeString + "'");
}
public Enumeration fromType(PrimitiveType> code) throws FHIRException {
if (code == null)
return null;
if (code.isEmpty())
return new Enumeration(this, ConceptMapEquivalence.NULL, code);
String codeString = code.asStringValue();
if (codeString == null || "".equals(codeString))
return new Enumeration(this, ConceptMapEquivalence.NULL, code);
if ("relatedto".equals(codeString))
return new Enumeration(this, ConceptMapEquivalence.RELATEDTO, code);
if ("equivalent".equals(codeString))
return new Enumeration(this, ConceptMapEquivalence.EQUIVALENT, code);
if ("equal".equals(codeString))
return new Enumeration(this, ConceptMapEquivalence.EQUAL, code);
if ("wider".equals(codeString))
return new Enumeration(this, ConceptMapEquivalence.WIDER, code);
if ("subsumes".equals(codeString))
return new Enumeration(this, ConceptMapEquivalence.SUBSUMES, code);
if ("narrower".equals(codeString))
return new Enumeration(this, ConceptMapEquivalence.NARROWER, code);
if ("specializes".equals(codeString))
return new Enumeration(this, ConceptMapEquivalence.SPECIALIZES, code);
if ("inexact".equals(codeString))
return new Enumeration(this, ConceptMapEquivalence.INEXACT, code);
if ("unmatched".equals(codeString))
return new Enumeration(this, ConceptMapEquivalence.UNMATCHED, code);
if ("disjoint".equals(codeString))
return new Enumeration(this, ConceptMapEquivalence.DISJOINT, code);
throw new FHIRException("Unknown ConceptMapEquivalence code '" + codeString + "'");
}
public String toCode(ConceptMapEquivalence code) {
if (code == ConceptMapEquivalence.RELATEDTO)
return "relatedto";
if (code == ConceptMapEquivalence.EQUIVALENT)
return "equivalent";
if (code == ConceptMapEquivalence.EQUAL)
return "equal";
if (code == ConceptMapEquivalence.WIDER)
return "wider";
if (code == ConceptMapEquivalence.SUBSUMES)
return "subsumes";
if (code == ConceptMapEquivalence.NARROWER)
return "narrower";
if (code == ConceptMapEquivalence.SPECIALIZES)
return "specializes";
if (code == ConceptMapEquivalence.INEXACT)
return "inexact";
if (code == ConceptMapEquivalence.UNMATCHED)
return "unmatched";
if (code == ConceptMapEquivalence.DISJOINT)
return "disjoint";
return "?";
}
public String toSystem(ConceptMapEquivalence code) {
return code.getSystem();
}
}
public enum DataAbsentReason {
/**
* The value is expected to exist but is not known.
*/
UNKNOWN,
/**
* The source was asked but does not know the value.
*/
ASKEDUNKNOWN,
/**
* There is reason to expect (from the workflow) that the value may become
* known.
*/
TEMPUNKNOWN,
/**
* The workflow didn't lead to this value being known.
*/
NOTASKED,
/**
* The source was asked but declined to answer.
*/
ASKEDDECLINED,
/**
* The information is not available due to security, privacy or related reasons.
*/
MASKED,
/**
* There is no proper value for this element (e.g. last menstrual period for a
* male).
*/
NOTAPPLICABLE,
/**
* The source system wasn't capable of supporting this element.
*/
UNSUPPORTED,
/**
* The content of the data is represented in the resource narrative.
*/
ASTEXT,
/**
* Some system or workflow process error means that the information is not
* available.
*/
ERROR,
/**
* The numeric value is undefined or unrepresentable due to a floating point
* processing error.
*/
NOTANUMBER,
/**
* The numeric value is excessively low and unrepresentable due to a floating
* point processing error.
*/
NEGATIVEINFINITY,
/**
* The numeric value is excessively high and unrepresentable due to a floating
* point processing error.
*/
POSITIVEINFINITY,
/**
* The value is not available because the observation procedure (test, etc.) was
* not performed.
*/
NOTPERFORMED,
/**
* The value is not permitted in this context (e.g. due to profiles, or the base
* data types).
*/
NOTPERMITTED,
/**
* added to help the parsers
*/
NULL;
public static DataAbsentReason fromCode(String codeString) throws FHIRException {
if (codeString == null || "".equals(codeString))
return null;
if ("unknown".equals(codeString))
return UNKNOWN;
if ("asked-unknown".equals(codeString))
return ASKEDUNKNOWN;
if ("temp-unknown".equals(codeString))
return TEMPUNKNOWN;
if ("not-asked".equals(codeString))
return NOTASKED;
if ("asked-declined".equals(codeString))
return ASKEDDECLINED;
if ("masked".equals(codeString))
return MASKED;
if ("not-applicable".equals(codeString))
return NOTAPPLICABLE;
if ("unsupported".equals(codeString))
return UNSUPPORTED;
if ("as-text".equals(codeString))
return ASTEXT;
if ("error".equals(codeString))
return ERROR;
if ("not-a-number".equals(codeString))
return NOTANUMBER;
if ("negative-infinity".equals(codeString))
return NEGATIVEINFINITY;
if ("positive-infinity".equals(codeString))
return POSITIVEINFINITY;
if ("not-performed".equals(codeString))
return NOTPERFORMED;
if ("not-permitted".equals(codeString))
return NOTPERMITTED;
throw new FHIRException("Unknown DataAbsentReason code '" + codeString + "'");
}
public String toCode() {
switch (this) {
case UNKNOWN:
return "unknown";
case ASKEDUNKNOWN:
return "asked-unknown";
case TEMPUNKNOWN:
return "temp-unknown";
case NOTASKED:
return "not-asked";
case ASKEDDECLINED:
return "asked-declined";
case MASKED:
return "masked";
case NOTAPPLICABLE:
return "not-applicable";
case UNSUPPORTED:
return "unsupported";
case ASTEXT:
return "as-text";
case ERROR:
return "error";
case NOTANUMBER:
return "not-a-number";
case NEGATIVEINFINITY:
return "negative-infinity";
case POSITIVEINFINITY:
return "positive-infinity";
case NOTPERFORMED:
return "not-performed";
case NOTPERMITTED:
return "not-permitted";
case NULL:
return null;
default:
return "?";
}
}
public String getSystem() {
switch (this) {
case UNKNOWN:
return "http://terminology.hl7.org/CodeSystem/data-absent-reason";
case ASKEDUNKNOWN:
return "http://terminology.hl7.org/CodeSystem/data-absent-reason";
case TEMPUNKNOWN:
return "http://terminology.hl7.org/CodeSystem/data-absent-reason";
case NOTASKED:
return "http://terminology.hl7.org/CodeSystem/data-absent-reason";
case ASKEDDECLINED:
return "http://terminology.hl7.org/CodeSystem/data-absent-reason";
case MASKED:
return "http://terminology.hl7.org/CodeSystem/data-absent-reason";
case NOTAPPLICABLE:
return "http://terminology.hl7.org/CodeSystem/data-absent-reason";
case UNSUPPORTED:
return "http://terminology.hl7.org/CodeSystem/data-absent-reason";
case ASTEXT:
return "http://terminology.hl7.org/CodeSystem/data-absent-reason";
case ERROR:
return "http://terminology.hl7.org/CodeSystem/data-absent-reason";
case NOTANUMBER:
return "http://terminology.hl7.org/CodeSystem/data-absent-reason";
case NEGATIVEINFINITY:
return "http://terminology.hl7.org/CodeSystem/data-absent-reason";
case POSITIVEINFINITY:
return "http://terminology.hl7.org/CodeSystem/data-absent-reason";
case NOTPERFORMED:
return "http://terminology.hl7.org/CodeSystem/data-absent-reason";
case NOTPERMITTED:
return "http://terminology.hl7.org/CodeSystem/data-absent-reason";
case NULL:
return null;
default:
return "?";
}
}
public String getDefinition() {
switch (this) {
case UNKNOWN:
return "The value is expected to exist but is not known.";
case ASKEDUNKNOWN:
return "The source was asked but does not know the value.";
case TEMPUNKNOWN:
return "There is reason to expect (from the workflow) that the value may become known.";
case NOTASKED:
return "The workflow didn't lead to this value being known.";
case ASKEDDECLINED:
return "The source was asked but declined to answer.";
case MASKED:
return "The information is not available due to security, privacy or related reasons.";
case NOTAPPLICABLE:
return "There is no proper value for this element (e.g. last menstrual period for a male).";
case UNSUPPORTED:
return "The source system wasn't capable of supporting this element.";
case ASTEXT:
return "The content of the data is represented in the resource narrative.";
case ERROR:
return "Some system or workflow process error means that the information is not available.";
case NOTANUMBER:
return "The numeric value is undefined or unrepresentable due to a floating point processing error.";
case NEGATIVEINFINITY:
return "The numeric value is excessively low and unrepresentable due to a floating point processing error.";
case POSITIVEINFINITY:
return "The numeric value is excessively high and unrepresentable due to a floating point processing error.";
case NOTPERFORMED:
return "The value is not available because the observation procedure (test, etc.) was not performed.";
case NOTPERMITTED:
return "The value is not permitted in this context (e.g. due to profiles, or the base data types).";
case NULL:
return null;
default:
return "?";
}
}
public String getDisplay() {
switch (this) {
case UNKNOWN:
return "Unknown";
case ASKEDUNKNOWN:
return "Asked But Unknown";
case TEMPUNKNOWN:
return "Temporarily Unknown";
case NOTASKED:
return "Not Asked";
case ASKEDDECLINED:
return "Asked But Declined";
case MASKED:
return "Masked";
case NOTAPPLICABLE:
return "Not Applicable";
case UNSUPPORTED:
return "Unsupported";
case ASTEXT:
return "As Text";
case ERROR:
return "Error";
case NOTANUMBER:
return "Not a Number (NaN)";
case NEGATIVEINFINITY:
return "Negative Infinity (NINF)";
case POSITIVEINFINITY:
return "Positive Infinity (PINF)";
case NOTPERFORMED:
return "Not Performed";
case NOTPERMITTED:
return "Not Permitted";
case NULL:
return null;
default:
return "?";
}
}
}
public static class DataAbsentReasonEnumFactory implements EnumFactory {
public DataAbsentReason fromCode(String codeString) throws IllegalArgumentException {
if (codeString == null || "".equals(codeString))
if (codeString == null || "".equals(codeString))
return null;
if ("unknown".equals(codeString))
return DataAbsentReason.UNKNOWN;
if ("asked-unknown".equals(codeString))
return DataAbsentReason.ASKEDUNKNOWN;
if ("temp-unknown".equals(codeString))
return DataAbsentReason.TEMPUNKNOWN;
if ("not-asked".equals(codeString))
return DataAbsentReason.NOTASKED;
if ("asked-declined".equals(codeString))
return DataAbsentReason.ASKEDDECLINED;
if ("masked".equals(codeString))
return DataAbsentReason.MASKED;
if ("not-applicable".equals(codeString))
return DataAbsentReason.NOTAPPLICABLE;
if ("unsupported".equals(codeString))
return DataAbsentReason.UNSUPPORTED;
if ("as-text".equals(codeString))
return DataAbsentReason.ASTEXT;
if ("error".equals(codeString))
return DataAbsentReason.ERROR;
if ("not-a-number".equals(codeString))
return DataAbsentReason.NOTANUMBER;
if ("negative-infinity".equals(codeString))
return DataAbsentReason.NEGATIVEINFINITY;
if ("positive-infinity".equals(codeString))
return DataAbsentReason.POSITIVEINFINITY;
if ("not-performed".equals(codeString))
return DataAbsentReason.NOTPERFORMED;
if ("not-permitted".equals(codeString))
return DataAbsentReason.NOTPERMITTED;
throw new IllegalArgumentException("Unknown DataAbsentReason code '" + codeString + "'");
}
public Enumeration fromType(PrimitiveType> code) throws FHIRException {
if (code == null)
return null;
if (code.isEmpty())
return new Enumeration(this, DataAbsentReason.NULL, code);
String codeString = code.asStringValue();
if (codeString == null || "".equals(codeString))
return new Enumeration(this, DataAbsentReason.NULL, code);
if ("unknown".equals(codeString))
return new Enumeration(this, DataAbsentReason.UNKNOWN, code);
if ("asked-unknown".equals(codeString))
return new Enumeration(this, DataAbsentReason.ASKEDUNKNOWN, code);
if ("temp-unknown".equals(codeString))
return new Enumeration(this, DataAbsentReason.TEMPUNKNOWN, code);
if ("not-asked".equals(codeString))
return new Enumeration(this, DataAbsentReason.NOTASKED, code);
if ("asked-declined".equals(codeString))
return new Enumeration(this, DataAbsentReason.ASKEDDECLINED, code);
if ("masked".equals(codeString))
return new Enumeration(this, DataAbsentReason.MASKED, code);
if ("not-applicable".equals(codeString))
return new Enumeration(this, DataAbsentReason.NOTAPPLICABLE, code);
if ("unsupported".equals(codeString))
return new Enumeration(this, DataAbsentReason.UNSUPPORTED, code);
if ("as-text".equals(codeString))
return new Enumeration(this, DataAbsentReason.ASTEXT, code);
if ("error".equals(codeString))
return new Enumeration(this, DataAbsentReason.ERROR, code);
if ("not-a-number".equals(codeString))
return new Enumeration(this, DataAbsentReason.NOTANUMBER, code);
if ("negative-infinity".equals(codeString))
return new Enumeration(this, DataAbsentReason.NEGATIVEINFINITY, code);
if ("positive-infinity".equals(codeString))
return new Enumeration(this, DataAbsentReason.POSITIVEINFINITY, code);
if ("not-performed".equals(codeString))
return new Enumeration(this, DataAbsentReason.NOTPERFORMED, code);
if ("not-permitted".equals(codeString))
return new Enumeration(this, DataAbsentReason.NOTPERMITTED, code);
throw new FHIRException("Unknown DataAbsentReason code '" + codeString + "'");
}
public String toCode(DataAbsentReason code) {
if (code == DataAbsentReason.UNKNOWN)
return "unknown";
if (code == DataAbsentReason.ASKEDUNKNOWN)
return "asked-unknown";
if (code == DataAbsentReason.TEMPUNKNOWN)
return "temp-unknown";
if (code == DataAbsentReason.NOTASKED)
return "not-asked";
if (code == DataAbsentReason.ASKEDDECLINED)
return "asked-declined";
if (code == DataAbsentReason.MASKED)
return "masked";
if (code == DataAbsentReason.NOTAPPLICABLE)
return "not-applicable";
if (code == DataAbsentReason.UNSUPPORTED)
return "unsupported";
if (code == DataAbsentReason.ASTEXT)
return "as-text";
if (code == DataAbsentReason.ERROR)
return "error";
if (code == DataAbsentReason.NOTANUMBER)
return "not-a-number";
if (code == DataAbsentReason.NEGATIVEINFINITY)
return "negative-infinity";
if (code == DataAbsentReason.POSITIVEINFINITY)
return "positive-infinity";
if (code == DataAbsentReason.NOTPERFORMED)
return "not-performed";
if (code == DataAbsentReason.NOTPERMITTED)
return "not-permitted";
return "?";
}
public String toSystem(DataAbsentReason code) {
return code.getSystem();
}
}
public enum DataType {
/**
* An address expressed using postal conventions (as opposed to GPS or other
* location definition formats). This data type may be used to convey addresses
* for use in delivering mail as well as for visiting locations which might not
* be valid for mail delivery. There are a variety of postal address formats
* defined around the world.
*/
ADDRESS,
/**
* A duration of time during which an organism (or a process) has existed.
*/
AGE,
/**
* A text note which also contains information about who made the statement and
* when.
*/
ANNOTATION,
/**
* For referring to data content defined in other formats.
*/
ATTACHMENT,
/**
* Base definition for all elements that are defined inside a resource - but not
* those in a data type.
*/
BACKBONEELEMENT,
/**
* A concept that may be defined by a formal reference to a terminology or
* ontology or may be provided by text.
*/
CODEABLECONCEPT,
/**
* A reference to a code defined by a terminology system.
*/
CODING,
/**
* Specifies contact information for a person or organization.
*/
CONTACTDETAIL,
/**
* Details for all kinds of technology mediated contact points for a person or
* organization, including telephone, email, etc.
*/
CONTACTPOINT,
/**
* A contributor to the content of a knowledge asset, including authors,
* editors, reviewers, and endorsers.
*/
CONTRIBUTOR,
/**
* A measured amount (or an amount that can potentially be measured). Note that
* measured amounts include amounts that are not precisely quantified, including
* amounts involving arbitrary units and floating currencies.
*/
COUNT,
/**
* Describes a required data item for evaluation in terms of the type of data,
* and optional code or date-based filters of the data.
*/
DATAREQUIREMENT,
/**
* A length - a value with a unit that is a physical distance.
*/
DISTANCE,
/**
* Indicates how the medication is/was taken or should be taken by the patient.
*/
DOSAGE,
/**
* A length of time.
*/
DURATION,
/**
* Base definition for all elements in a resource.
*/
ELEMENT,
/**
* Captures constraints on each element within the resource, profile, or
* extension.
*/
ELEMENTDEFINITION,
/**
* A expression that is evaluated in a specified context and returns a value.
* The context of use of the expression must specify the context in which the
* expression is evaluated, and how the result of the expression is used.
*/
EXPRESSION,
/**
* Optional Extension Element - found in all resources.
*/
EXTENSION,
/**
* A human's name with the ability to identify parts and usage.
*/
HUMANNAME,
/**
* An identifier - identifies some entity uniquely and unambiguously. Typically
* this is used for business identifiers.
*/
IDENTIFIER,
/**
* The marketing status describes the date when a medicinal product is actually
* put on the market or the date as of which it is no longer available.
*/
MARKETINGSTATUS,
/**
* The metadata about a resource. This is content in the resource that is
* maintained by the infrastructure. Changes to the content might not always be
* associated with version changes to the resource.
*/
META,
/**
* An amount of economic utility in some recognized currency.
*/
MONEY,
/**
* null
*/
MONEYQUANTITY,
/**
* A human-readable summary of the resource conveying the essential clinical and
* business information for the resource.
*/
NARRATIVE,
/**
* The parameters to the module. This collection specifies both the input and
* output parameters. Input parameters are provided by the caller as part of the
* $evaluate operation. Output parameters are included in the GuidanceResponse.
*/
PARAMETERDEFINITION,
/**
* A time period defined by a start and end date and optionally time.
*/
PERIOD,
/**
* A populatioof people with some set of grouping criteria.
*/
POPULATION,
/**
* The marketing status describes the date when a medicinal product is actually
* put on the market or the date as of which it is no longer available.
*/
PRODCHARACTERISTIC,
/**
* The shelf-life and storage information for a medicinal product item or
* container can be described using this class.
*/
PRODUCTSHELFLIFE,
/**
* A measured amount (or an amount that can potentially be measured). Note that
* measured amounts include amounts that are not precisely quantified, including
* amounts involving arbitrary units and floating currencies.
*/
QUANTITY,
/**
* A set of ordered Quantities defined by a low and high limit.
*/
RANGE,
/**
* A relationship of two Quantity values - expressed as a numerator and a
* denominator.
*/
RATIO,
/**
* A reference from one resource to another.
*/
REFERENCE,
/**
* Related artifacts such as additional documentation, justification, or
* bibliographic references.
*/
RELATEDARTIFACT,
/**
* A series of measurements taken by a device, with upper and lower limits.
* There may be more than one dimension in the data.
*/
SAMPLEDDATA,
/**
* A signature along with supporting context. The signature may be a digital
* signature that is cryptographic in nature, or some other signature acceptable
* to the domain. This other signature may be as simple as a graphical image
* representing a hand-written signature, or a signature ceremony Different
* signature approaches have different utilities.
*/
SIGNATURE,
/**
* null
*/
SIMPLEQUANTITY,
/**
* Chemical substances are a single substance type whose primary defining
* element is the molecular structure. Chemical substances shall be defined on
* the basis of their complete covalent molecular structure; the presence of a
* salt (counter-ion) and/or solvates (water, alcohols) is also captured.
* Purity, grade, physical form or particle size are not taken into account in
* the definition of a chemical substance or in the assignment of a Substance
* ID.
*/
SUBSTANCEAMOUNT,
/**
* Specifies an event that may occur multiple times. Timing schedules are used
* to record when things are planned, expected or requested to occur. The most
* common usage is in dosage instructions for medications. They are also used
* when planning care of various kinds, and may be used for reporting the
* schedule to which past regular activities were carried out.
*/
TIMING,
/**
* A description of a triggering event. Triggering events can be named events,
* data events, or periodic, as determined by the type element.
*/
TRIGGERDEFINITION,
/**
* Specifies clinical/business/etc. metadata that can be used to retrieve, index
* and/or categorize an artifact. This metadata can either be specific to the
* applicable population (e.g., age category, DRG) or the specific context of
* care (e.g., venue, care setting, provider of care).
*/
USAGECONTEXT,
/**
* A stream of bytes
*/
BASE64BINARY,
/**
* Value of "true" or "false"
*/
BOOLEAN,
/**
* A URI that is a reference to a canonical URL on a FHIR resource
*/
CANONICAL,
/**
* A string which has at least one character and no leading or trailing
* whitespace and where there is no whitespace other than single spaces in the
* contents
*/
CODE,
/**
* A date or partial date (e.g. just year or year + month). There is no time
* zone. The format is a union of the schema types gYear, gYearMonth and date.
* Dates SHALL be valid dates.
*/
DATE,
/**
* A date, date-time or partial date (e.g. just year or year + month). If hours
* and minutes are specified, a time zone SHALL be populated. The format is a
* union of the schema types gYear, gYearMonth, date and dateTime. Seconds must
* be provided due to schema type constraints but may be zero-filled and may be
* ignored. Dates SHALL be valid dates.
*/
DATETIME,
/**
* A rational number with implicit precision
*/
DECIMAL,
/**
* Any combination of letters, numerals, "-" and ".", with a length limit of 64
* characters. (This might be an integer, an unprefixed OID, UUID or any other
* identifier pattern that meets these constraints.) Ids are case-insensitive.
*/
ID,
/**
* An instant in time - known at least to the second
*/
INSTANT,
/**
* A whole number
*/
INTEGER,
/**
* A string that may contain Github Flavored Markdown syntax for optional
* processing by a mark down presentation engine
*/
MARKDOWN,
/**
* An OID represented as a URI
*/
OID,
/**
* An integer with a value that is positive (e.g. >0)
*/
POSITIVEINT,
/**
* A sequence of Unicode characters
*/
STRING,
/**
* A time during the day, with no date specified
*/
TIME,
/**
* An integer with a value that is not negative (e.g. >= 0)
*/
UNSIGNEDINT,
/**
* String of characters used to identify a name or a resource
*/
URI,
/**
* A URI that is a literal reference
*/
URL,
/**
* A UUID, represented as a URI
*/
UUID,
/**
* XHTML format, as defined by W3C, but restricted usage (mainly, no active
* content)
*/
XHTML,
/**
* added to help the parsers
*/
NULL;
public static DataType fromCode(String codeString) throws FHIRException {
if (codeString == null || "".equals(codeString))
return null;
if ("Address".equals(codeString))
return ADDRESS;
if ("Age".equals(codeString))
return AGE;
if ("Annotation".equals(codeString))
return ANNOTATION;
if ("Attachment".equals(codeString))
return ATTACHMENT;
if ("BackboneElement".equals(codeString))
return BACKBONEELEMENT;
if ("CodeableConcept".equals(codeString))
return CODEABLECONCEPT;
if ("Coding".equals(codeString))
return CODING;
if ("ContactDetail".equals(codeString))
return CONTACTDETAIL;
if ("ContactPoint".equals(codeString))
return CONTACTPOINT;
if ("Contributor".equals(codeString))
return CONTRIBUTOR;
if ("Count".equals(codeString))
return COUNT;
if ("DataRequirement".equals(codeString))
return DATAREQUIREMENT;
if ("Distance".equals(codeString))
return DISTANCE;
if ("Dosage".equals(codeString))
return DOSAGE;
if ("Duration".equals(codeString))
return DURATION;
if ("Element".equals(codeString))
return ELEMENT;
if ("ElementDefinition".equals(codeString))
return ELEMENTDEFINITION;
if ("Expression".equals(codeString))
return EXPRESSION;
if ("Extension".equals(codeString))
return EXTENSION;
if ("HumanName".equals(codeString))
return HUMANNAME;
if ("Identifier".equals(codeString))
return IDENTIFIER;
if ("MarketingStatus".equals(codeString))
return MARKETINGSTATUS;
if ("Meta".equals(codeString))
return META;
if ("Money".equals(codeString))
return MONEY;
if ("MoneyQuantity".equals(codeString))
return MONEYQUANTITY;
if ("Narrative".equals(codeString))
return NARRATIVE;
if ("ParameterDefinition".equals(codeString))
return PARAMETERDEFINITION;
if ("Period".equals(codeString))
return PERIOD;
if ("Population".equals(codeString))
return POPULATION;
if ("ProdCharacteristic".equals(codeString))
return PRODCHARACTERISTIC;
if ("ProductShelfLife".equals(codeString))
return PRODUCTSHELFLIFE;
if ("Quantity".equals(codeString))
return QUANTITY;
if ("Range".equals(codeString))
return RANGE;
if ("Ratio".equals(codeString))
return RATIO;
if ("Reference".equals(codeString))
return REFERENCE;
if ("RelatedArtifact".equals(codeString))
return RELATEDARTIFACT;
if ("SampledData".equals(codeString))
return SAMPLEDDATA;
if ("Signature".equals(codeString))
return SIGNATURE;
if ("SimpleQuantity".equals(codeString))
return SIMPLEQUANTITY;
if ("SubstanceAmount".equals(codeString))
return SUBSTANCEAMOUNT;
if ("Timing".equals(codeString))
return TIMING;
if ("TriggerDefinition".equals(codeString))
return TRIGGERDEFINITION;
if ("UsageContext".equals(codeString))
return USAGECONTEXT;
if ("base64Binary".equals(codeString))
return BASE64BINARY;
if ("boolean".equals(codeString))
return BOOLEAN;
if ("canonical".equals(codeString))
return CANONICAL;
if ("code".equals(codeString))
return CODE;
if ("date".equals(codeString))
return DATE;
if ("dateTime".equals(codeString))
return DATETIME;
if ("decimal".equals(codeString))
return DECIMAL;
if ("id".equals(codeString))
return ID;
if ("instant".equals(codeString))
return INSTANT;
if ("integer".equals(codeString))
return INTEGER;
if ("markdown".equals(codeString))
return MARKDOWN;
if ("oid".equals(codeString))
return OID;
if ("positiveInt".equals(codeString))
return POSITIVEINT;
if ("string".equals(codeString))
return STRING;
if ("time".equals(codeString))
return TIME;
if ("unsignedInt".equals(codeString))
return UNSIGNEDINT;
if ("uri".equals(codeString))
return URI;
if ("url".equals(codeString))
return URL;
if ("uuid".equals(codeString))
return UUID;
if ("xhtml".equals(codeString))
return XHTML;
throw new FHIRException("Unknown DataType code '" + codeString + "'");
}
public String toCode() {
switch (this) {
case ADDRESS:
return "Address";
case AGE:
return "Age";
case ANNOTATION:
return "Annotation";
case ATTACHMENT:
return "Attachment";
case BACKBONEELEMENT:
return "BackboneElement";
case CODEABLECONCEPT:
return "CodeableConcept";
case CODING:
return "Coding";
case CONTACTDETAIL:
return "ContactDetail";
case CONTACTPOINT:
return "ContactPoint";
case CONTRIBUTOR:
return "Contributor";
case COUNT:
return "Count";
case DATAREQUIREMENT:
return "DataRequirement";
case DISTANCE:
return "Distance";
case DOSAGE:
return "Dosage";
case DURATION:
return "Duration";
case ELEMENT:
return "Element";
case ELEMENTDEFINITION:
return "ElementDefinition";
case EXPRESSION:
return "Expression";
case EXTENSION:
return "Extension";
case HUMANNAME:
return "HumanName";
case IDENTIFIER:
return "Identifier";
case MARKETINGSTATUS:
return "MarketingStatus";
case META:
return "Meta";
case MONEY:
return "Money";
case MONEYQUANTITY:
return "MoneyQuantity";
case NARRATIVE:
return "Narrative";
case PARAMETERDEFINITION:
return "ParameterDefinition";
case PERIOD:
return "Period";
case POPULATION:
return "Population";
case PRODCHARACTERISTIC:
return "ProdCharacteristic";
case PRODUCTSHELFLIFE:
return "ProductShelfLife";
case QUANTITY:
return "Quantity";
case RANGE:
return "Range";
case RATIO:
return "Ratio";
case REFERENCE:
return "Reference";
case RELATEDARTIFACT:
return "RelatedArtifact";
case SAMPLEDDATA:
return "SampledData";
case SIGNATURE:
return "Signature";
case SIMPLEQUANTITY:
return "SimpleQuantity";
case SUBSTANCEAMOUNT:
return "SubstanceAmount";
case TIMING:
return "Timing";
case TRIGGERDEFINITION:
return "TriggerDefinition";
case USAGECONTEXT:
return "UsageContext";
case BASE64BINARY:
return "base64Binary";
case BOOLEAN:
return "boolean";
case CANONICAL:
return "canonical";
case CODE:
return "code";
case DATE:
return "date";
case DATETIME:
return "dateTime";
case DECIMAL:
return "decimal";
case ID:
return "id";
case INSTANT:
return "instant";
case INTEGER:
return "integer";
case MARKDOWN:
return "markdown";
case OID:
return "oid";
case POSITIVEINT:
return "positiveInt";
case STRING:
return "string";
case TIME:
return "time";
case UNSIGNEDINT:
return "unsignedInt";
case URI:
return "uri";
case URL:
return "url";
case UUID:
return "uuid";
case XHTML:
return "xhtml";
case NULL:
return null;
default:
return "?";
}
}
public String getSystem() {
switch (this) {
case ADDRESS:
return "http://hl7.org/fhir/data-types";
case AGE:
return "http://hl7.org/fhir/data-types";
case ANNOTATION:
return "http://hl7.org/fhir/data-types";
case ATTACHMENT:
return "http://hl7.org/fhir/data-types";
case BACKBONEELEMENT:
return "http://hl7.org/fhir/data-types";
case CODEABLECONCEPT:
return "http://hl7.org/fhir/data-types";
case CODING:
return "http://hl7.org/fhir/data-types";
case CONTACTDETAIL:
return "http://hl7.org/fhir/data-types";
case CONTACTPOINT:
return "http://hl7.org/fhir/data-types";
case CONTRIBUTOR:
return "http://hl7.org/fhir/data-types";
case COUNT:
return "http://hl7.org/fhir/data-types";
case DATAREQUIREMENT:
return "http://hl7.org/fhir/data-types";
case DISTANCE:
return "http://hl7.org/fhir/data-types";
case DOSAGE:
return "http://hl7.org/fhir/data-types";
case DURATION:
return "http://hl7.org/fhir/data-types";
case ELEMENT:
return "http://hl7.org/fhir/data-types";
case ELEMENTDEFINITION:
return "http://hl7.org/fhir/data-types";
case EXPRESSION:
return "http://hl7.org/fhir/data-types";
case EXTENSION:
return "http://hl7.org/fhir/data-types";
case HUMANNAME:
return "http://hl7.org/fhir/data-types";
case IDENTIFIER:
return "http://hl7.org/fhir/data-types";
case MARKETINGSTATUS:
return "http://hl7.org/fhir/data-types";
case META:
return "http://hl7.org/fhir/data-types";
case MONEY:
return "http://hl7.org/fhir/data-types";
case MONEYQUANTITY:
return "http://hl7.org/fhir/data-types";
case NARRATIVE:
return "http://hl7.org/fhir/data-types";
case PARAMETERDEFINITION:
return "http://hl7.org/fhir/data-types";
case PERIOD:
return "http://hl7.org/fhir/data-types";
case POPULATION:
return "http://hl7.org/fhir/data-types";
case PRODCHARACTERISTIC:
return "http://hl7.org/fhir/data-types";
case PRODUCTSHELFLIFE:
return "http://hl7.org/fhir/data-types";
case QUANTITY:
return "http://hl7.org/fhir/data-types";
case RANGE:
return "http://hl7.org/fhir/data-types";
case RATIO:
return "http://hl7.org/fhir/data-types";
case REFERENCE:
return "http://hl7.org/fhir/data-types";
case RELATEDARTIFACT:
return "http://hl7.org/fhir/data-types";
case SAMPLEDDATA:
return "http://hl7.org/fhir/data-types";
case SIGNATURE:
return "http://hl7.org/fhir/data-types";
case SIMPLEQUANTITY:
return "http://hl7.org/fhir/data-types";
case SUBSTANCEAMOUNT:
return "http://hl7.org/fhir/data-types";
case TIMING:
return "http://hl7.org/fhir/data-types";
case TRIGGERDEFINITION:
return "http://hl7.org/fhir/data-types";
case USAGECONTEXT:
return "http://hl7.org/fhir/data-types";
case BASE64BINARY:
return "http://hl7.org/fhir/data-types";
case BOOLEAN:
return "http://hl7.org/fhir/data-types";
case CANONICAL:
return "http://hl7.org/fhir/data-types";
case CODE:
return "http://hl7.org/fhir/data-types";
case DATE:
return "http://hl7.org/fhir/data-types";
case DATETIME:
return "http://hl7.org/fhir/data-types";
case DECIMAL:
return "http://hl7.org/fhir/data-types";
case ID:
return "http://hl7.org/fhir/data-types";
case INSTANT:
return "http://hl7.org/fhir/data-types";
case INTEGER:
return "http://hl7.org/fhir/data-types";
case MARKDOWN:
return "http://hl7.org/fhir/data-types";
case OID:
return "http://hl7.org/fhir/data-types";
case POSITIVEINT:
return "http://hl7.org/fhir/data-types";
case STRING:
return "http://hl7.org/fhir/data-types";
case TIME:
return "http://hl7.org/fhir/data-types";
case UNSIGNEDINT:
return "http://hl7.org/fhir/data-types";
case URI:
return "http://hl7.org/fhir/data-types";
case URL:
return "http://hl7.org/fhir/data-types";
case UUID:
return "http://hl7.org/fhir/data-types";
case XHTML:
return "http://hl7.org/fhir/data-types";
case NULL:
return null;
default:
return "?";
}
}
public String getDefinition() {
switch (this) {
case ADDRESS:
return "An address expressed using postal conventions (as opposed to GPS or other location definition formats). This data type may be used to convey addresses for use in delivering mail as well as for visiting locations which might not be valid for mail delivery. There are a variety of postal address formats defined around the world.";
case AGE:
return "A duration of time during which an organism (or a process) has existed.";
case ANNOTATION:
return "A text note which also contains information about who made the statement and when.";
case ATTACHMENT:
return "For referring to data content defined in other formats.";
case BACKBONEELEMENT:
return "Base definition for all elements that are defined inside a resource - but not those in a data type.";
case CODEABLECONCEPT:
return "A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.";
case CODING:
return "A reference to a code defined by a terminology system.";
case CONTACTDETAIL:
return "Specifies contact information for a person or organization.";
case CONTACTPOINT:
return "Details for all kinds of technology mediated contact points for a person or organization, including telephone, email, etc.";
case CONTRIBUTOR:
return "A contributor to the content of a knowledge asset, including authors, editors, reviewers, and endorsers.";
case COUNT:
return "A measured amount (or an amount that can potentially be measured). Note that measured amounts include amounts that are not precisely quantified, including amounts involving arbitrary units and floating currencies.";
case DATAREQUIREMENT:
return "Describes a required data item for evaluation in terms of the type of data, and optional code or date-based filters of the data.";
case DISTANCE:
return "A length - a value with a unit that is a physical distance.";
case DOSAGE:
return "Indicates how the medication is/was taken or should be taken by the patient.";
case DURATION:
return "A length of time.";
case ELEMENT:
return "Base definition for all elements in a resource.";
case ELEMENTDEFINITION:
return "Captures constraints on each element within the resource, profile, or extension.";
case EXPRESSION:
return "A expression that is evaluated in a specified context and returns a value. The context of use of the expression must specify the context in which the expression is evaluated, and how the result of the expression is used.";
case EXTENSION:
return "Optional Extension Element - found in all resources.";
case HUMANNAME:
return "A human's name with the ability to identify parts and usage.";
case IDENTIFIER:
return "An identifier - identifies some entity uniquely and unambiguously. Typically this is used for business identifiers.";
case MARKETINGSTATUS:
return "The marketing status describes the date when a medicinal product is actually put on the market or the date as of which it is no longer available.";
case META:
return "The metadata about a resource. This is content in the resource that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.";
case MONEY:
return "An amount of economic utility in some recognized currency.";
case MONEYQUANTITY:
return "";
case NARRATIVE:
return "A human-readable summary of the resource conveying the essential clinical and business information for the resource.";
case PARAMETERDEFINITION:
return "The parameters to the module. This collection specifies both the input and output parameters. Input parameters are provided by the caller as part of the $evaluate operation. Output parameters are included in the GuidanceResponse.";
case PERIOD:
return "A time period defined by a start and end date and optionally time.";
case POPULATION:
return "A populatioof people with some set of grouping criteria.";
case PRODCHARACTERISTIC:
return "The marketing status describes the date when a medicinal product is actually put on the market or the date as of which it is no longer available.";
case PRODUCTSHELFLIFE:
return "The shelf-life and storage information for a medicinal product item or container can be described using this class.";
case QUANTITY:
return "A measured amount (or an amount that can potentially be measured). Note that measured amounts include amounts that are not precisely quantified, including amounts involving arbitrary units and floating currencies.";
case RANGE:
return "A set of ordered Quantities defined by a low and high limit.";
case RATIO:
return "A relationship of two Quantity values - expressed as a numerator and a denominator.";
case REFERENCE:
return "A reference from one resource to another.";
case RELATEDARTIFACT:
return "Related artifacts such as additional documentation, justification, or bibliographic references.";
case SAMPLEDDATA:
return "A series of measurements taken by a device, with upper and lower limits. There may be more than one dimension in the data.";
case SIGNATURE:
return "A signature along with supporting context. The signature may be a digital signature that is cryptographic in nature, or some other signature acceptable to the domain. This other signature may be as simple as a graphical image representing a hand-written signature, or a signature ceremony Different signature approaches have different utilities.";
case SIMPLEQUANTITY:
return "";
case SUBSTANCEAMOUNT:
return "Chemical substances are a single substance type whose primary defining element is the molecular structure. Chemical substances shall be defined on the basis of their complete covalent molecular structure; the presence of a salt (counter-ion) and/or solvates (water, alcohols) is also captured. Purity, grade, physical form or particle size are not taken into account in the definition of a chemical substance or in the assignment of a Substance ID.";
case TIMING:
return "Specifies an event that may occur multiple times. Timing schedules are used to record when things are planned, expected or requested to occur. The most common usage is in dosage instructions for medications. They are also used when planning care of various kinds, and may be used for reporting the schedule to which past regular activities were carried out.";
case TRIGGERDEFINITION:
return "A description of a triggering event. Triggering events can be named events, data events, or periodic, as determined by the type element.";
case USAGECONTEXT:
return "Specifies clinical/business/etc. metadata that can be used to retrieve, index and/or categorize an artifact. This metadata can either be specific to the applicable population (e.g., age category, DRG) or the specific context of care (e.g., venue, care setting, provider of care).";
case BASE64BINARY:
return "A stream of bytes";
case BOOLEAN:
return "Value of \"true\" or \"false\"";
case CANONICAL:
return "A URI that is a reference to a canonical URL on a FHIR resource";
case CODE:
return "A string which has at least one character and no leading or trailing whitespace and where there is no whitespace other than single spaces in the contents";
case DATE:
return "A date or partial date (e.g. just year or year + month). There is no time zone. The format is a union of the schema types gYear, gYearMonth and date. Dates SHALL be valid dates.";
case DATETIME:
return "A date, date-time or partial date (e.g. just year or year + month). If hours and minutes are specified, a time zone SHALL be populated. The format is a union of the schema types gYear, gYearMonth, date and dateTime. Seconds must be provided due to schema type constraints but may be zero-filled and may be ignored. Dates SHALL be valid dates.";
case DECIMAL:
return "A rational number with implicit precision";
case ID:
return "Any combination of letters, numerals, \"-\" and \".\", with a length limit of 64 characters. (This might be an integer, an unprefixed OID, UUID or any other identifier pattern that meets these constraints.) Ids are case-insensitive.";
case INSTANT:
return "An instant in time - known at least to the second";
case INTEGER:
return "A whole number";
case MARKDOWN:
return "A string that may contain Github Flavored Markdown syntax for optional processing by a mark down presentation engine";
case OID:
return "An OID represented as a URI";
case POSITIVEINT:
return "An integer with a value that is positive (e.g. >0)";
case STRING:
return "A sequence of Unicode characters";
case TIME:
return "A time during the day, with no date specified";
case UNSIGNEDINT:
return "An integer with a value that is not negative (e.g. >= 0)";
case URI:
return "String of characters used to identify a name or a resource";
case URL:
return "A URI that is a literal reference";
case UUID:
return "A UUID, represented as a URI";
case XHTML:
return "XHTML format, as defined by W3C, but restricted usage (mainly, no active content)";
case NULL:
return null;
default:
return "?";
}
}
public String getDisplay() {
switch (this) {
case ADDRESS:
return "Address";
case AGE:
return "Age";
case ANNOTATION:
return "Annotation";
case ATTACHMENT:
return "Attachment";
case BACKBONEELEMENT:
return "BackboneElement";
case CODEABLECONCEPT:
return "CodeableConcept";
case CODING:
return "Coding";
case CONTACTDETAIL:
return "ContactDetail";
case CONTACTPOINT:
return "ContactPoint";
case CONTRIBUTOR:
return "Contributor";
case COUNT:
return "Count";
case DATAREQUIREMENT:
return "DataRequirement";
case DISTANCE:
return "Distance";
case DOSAGE:
return "Dosage";
case DURATION:
return "Duration";
case ELEMENT:
return "Element";
case ELEMENTDEFINITION:
return "ElementDefinition";
case EXPRESSION:
return "Expression";
case EXTENSION:
return "Extension";
case HUMANNAME:
return "HumanName";
case IDENTIFIER:
return "Identifier";
case MARKETINGSTATUS:
return "MarketingStatus";
case META:
return "Meta";
case MONEY:
return "Money";
case MONEYQUANTITY:
return "MoneyQuantity";
case NARRATIVE:
return "Narrative";
case PARAMETERDEFINITION:
return "ParameterDefinition";
case PERIOD:
return "Period";
case POPULATION:
return "Population";
case PRODCHARACTERISTIC:
return "ProdCharacteristic";
case PRODUCTSHELFLIFE:
return "ProductShelfLife";
case QUANTITY:
return "Quantity";
case RANGE:
return "Range";
case RATIO:
return "Ratio";
case REFERENCE:
return "Reference";
case RELATEDARTIFACT:
return "RelatedArtifact";
case SAMPLEDDATA:
return "SampledData";
case SIGNATURE:
return "Signature";
case SIMPLEQUANTITY:
return "SimpleQuantity";
case SUBSTANCEAMOUNT:
return "SubstanceAmount";
case TIMING:
return "Timing";
case TRIGGERDEFINITION:
return "TriggerDefinition";
case USAGECONTEXT:
return "UsageContext";
case BASE64BINARY:
return "base64Binary";
case BOOLEAN:
return "boolean";
case CANONICAL:
return "canonical";
case CODE:
return "code";
case DATE:
return "date";
case DATETIME:
return "dateTime";
case DECIMAL:
return "decimal";
case ID:
return "id";
case INSTANT:
return "instant";
case INTEGER:
return "integer";
case MARKDOWN:
return "markdown";
case OID:
return "oid";
case POSITIVEINT:
return "positiveInt";
case STRING:
return "string";
case TIME:
return "time";
case UNSIGNEDINT:
return "unsignedInt";
case URI:
return "uri";
case URL:
return "url";
case UUID:
return "uuid";
case XHTML:
return "XHTML";
case NULL:
return null;
default:
return "?";
}
}
}
public static class DataTypeEnumFactory implements EnumFactory {
public DataType fromCode(String codeString) throws IllegalArgumentException {
if (codeString == null || "".equals(codeString))
if (codeString == null || "".equals(codeString))
return null;
if ("Address".equals(codeString))
return DataType.ADDRESS;
if ("Age".equals(codeString))
return DataType.AGE;
if ("Annotation".equals(codeString))
return DataType.ANNOTATION;
if ("Attachment".equals(codeString))
return DataType.ATTACHMENT;
if ("BackboneElement".equals(codeString))
return DataType.BACKBONEELEMENT;
if ("CodeableConcept".equals(codeString))
return DataType.CODEABLECONCEPT;
if ("Coding".equals(codeString))
return DataType.CODING;
if ("ContactDetail".equals(codeString))
return DataType.CONTACTDETAIL;
if ("ContactPoint".equals(codeString))
return DataType.CONTACTPOINT;
if ("Contributor".equals(codeString))
return DataType.CONTRIBUTOR;
if ("Count".equals(codeString))
return DataType.COUNT;
if ("DataRequirement".equals(codeString))
return DataType.DATAREQUIREMENT;
if ("Distance".equals(codeString))
return DataType.DISTANCE;
if ("Dosage".equals(codeString))
return DataType.DOSAGE;
if ("Duration".equals(codeString))
return DataType.DURATION;
if ("Element".equals(codeString))
return DataType.ELEMENT;
if ("ElementDefinition".equals(codeString))
return DataType.ELEMENTDEFINITION;
if ("Expression".equals(codeString))
return DataType.EXPRESSION;
if ("Extension".equals(codeString))
return DataType.EXTENSION;
if ("HumanName".equals(codeString))
return DataType.HUMANNAME;
if ("Identifier".equals(codeString))
return DataType.IDENTIFIER;
if ("MarketingStatus".equals(codeString))
return DataType.MARKETINGSTATUS;
if ("Meta".equals(codeString))
return DataType.META;
if ("Money".equals(codeString))
return DataType.MONEY;
if ("MoneyQuantity".equals(codeString))
return DataType.MONEYQUANTITY;
if ("Narrative".equals(codeString))
return DataType.NARRATIVE;
if ("ParameterDefinition".equals(codeString))
return DataType.PARAMETERDEFINITION;
if ("Period".equals(codeString))
return DataType.PERIOD;
if ("Population".equals(codeString))
return DataType.POPULATION;
if ("ProdCharacteristic".equals(codeString))
return DataType.PRODCHARACTERISTIC;
if ("ProductShelfLife".equals(codeString))
return DataType.PRODUCTSHELFLIFE;
if ("Quantity".equals(codeString))
return DataType.QUANTITY;
if ("Range".equals(codeString))
return DataType.RANGE;
if ("Ratio".equals(codeString))
return DataType.RATIO;
if ("Reference".equals(codeString))
return DataType.REFERENCE;
if ("RelatedArtifact".equals(codeString))
return DataType.RELATEDARTIFACT;
if ("SampledData".equals(codeString))
return DataType.SAMPLEDDATA;
if ("Signature".equals(codeString))
return DataType.SIGNATURE;
if ("SimpleQuantity".equals(codeString))
return DataType.SIMPLEQUANTITY;
if ("SubstanceAmount".equals(codeString))
return DataType.SUBSTANCEAMOUNT;
if ("Timing".equals(codeString))
return DataType.TIMING;
if ("TriggerDefinition".equals(codeString))
return DataType.TRIGGERDEFINITION;
if ("UsageContext".equals(codeString))
return DataType.USAGECONTEXT;
if ("base64Binary".equals(codeString))
return DataType.BASE64BINARY;
if ("boolean".equals(codeString))
return DataType.BOOLEAN;
if ("canonical".equals(codeString))
return DataType.CANONICAL;
if ("code".equals(codeString))
return DataType.CODE;
if ("date".equals(codeString))
return DataType.DATE;
if ("dateTime".equals(codeString))
return DataType.DATETIME;
if ("decimal".equals(codeString))
return DataType.DECIMAL;
if ("id".equals(codeString))
return DataType.ID;
if ("instant".equals(codeString))
return DataType.INSTANT;
if ("integer".equals(codeString))
return DataType.INTEGER;
if ("markdown".equals(codeString))
return DataType.MARKDOWN;
if ("oid".equals(codeString))
return DataType.OID;
if ("positiveInt".equals(codeString))
return DataType.POSITIVEINT;
if ("string".equals(codeString))
return DataType.STRING;
if ("time".equals(codeString))
return DataType.TIME;
if ("unsignedInt".equals(codeString))
return DataType.UNSIGNEDINT;
if ("uri".equals(codeString))
return DataType.URI;
if ("url".equals(codeString))
return DataType.URL;
if ("uuid".equals(codeString))
return DataType.UUID;
if ("xhtml".equals(codeString))
return DataType.XHTML;
throw new IllegalArgumentException("Unknown DataType code '" + codeString + "'");
}
public Enumeration fromType(PrimitiveType> code) throws FHIRException {
if (code == null)
return null;
if (code.isEmpty())
return new Enumeration(this, DataType.NULL, code);
String codeString = code.asStringValue();
if (codeString == null || "".equals(codeString))
return new Enumeration(this, DataType.NULL, code);
if ("Address".equals(codeString))
return new Enumeration(this, DataType.ADDRESS, code);
if ("Age".equals(codeString))
return new Enumeration(this, DataType.AGE, code);
if ("Annotation".equals(codeString))
return new Enumeration(this, DataType.ANNOTATION, code);
if ("Attachment".equals(codeString))
return new Enumeration(this, DataType.ATTACHMENT, code);
if ("BackboneElement".equals(codeString))
return new Enumeration(this, DataType.BACKBONEELEMENT, code);
if ("CodeableConcept".equals(codeString))
return new Enumeration(this, DataType.CODEABLECONCEPT, code);
if ("Coding".equals(codeString))
return new Enumeration(this, DataType.CODING, code);
if ("ContactDetail".equals(codeString))
return new Enumeration(this, DataType.CONTACTDETAIL, code);
if ("ContactPoint".equals(codeString))
return new Enumeration(this, DataType.CONTACTPOINT, code);
if ("Contributor".equals(codeString))
return new Enumeration(this, DataType.CONTRIBUTOR, code);
if ("Count".equals(codeString))
return new Enumeration(this, DataType.COUNT, code);
if ("DataRequirement".equals(codeString))
return new Enumeration(this, DataType.DATAREQUIREMENT, code);
if ("Distance".equals(codeString))
return new Enumeration(this, DataType.DISTANCE, code);
if ("Dosage".equals(codeString))
return new Enumeration(this, DataType.DOSAGE, code);
if ("Duration".equals(codeString))
return new Enumeration(this, DataType.DURATION, code);
if ("Element".equals(codeString))
return new Enumeration(this, DataType.ELEMENT, code);
if ("ElementDefinition".equals(codeString))
return new Enumeration(this, DataType.ELEMENTDEFINITION, code);
if ("Expression".equals(codeString))
return new Enumeration(this, DataType.EXPRESSION, code);
if ("Extension".equals(codeString))
return new Enumeration(this, DataType.EXTENSION, code);
if ("HumanName".equals(codeString))
return new Enumeration(this, DataType.HUMANNAME, code);
if ("Identifier".equals(codeString))
return new Enumeration(this, DataType.IDENTIFIER, code);
if ("MarketingStatus".equals(codeString))
return new Enumeration(this, DataType.MARKETINGSTATUS, code);
if ("Meta".equals(codeString))
return new Enumeration(this, DataType.META, code);
if ("Money".equals(codeString))
return new Enumeration(this, DataType.MONEY, code);
if ("MoneyQuantity".equals(codeString))
return new Enumeration(this, DataType.MONEYQUANTITY, code);
if ("Narrative".equals(codeString))
return new Enumeration(this, DataType.NARRATIVE, code);
if ("ParameterDefinition".equals(codeString))
return new Enumeration(this, DataType.PARAMETERDEFINITION, code);
if ("Period".equals(codeString))
return new Enumeration(this, DataType.PERIOD, code);
if ("Population".equals(codeString))
return new Enumeration(this, DataType.POPULATION, code);
if ("ProdCharacteristic".equals(codeString))
return new Enumeration(this, DataType.PRODCHARACTERISTIC, code);
if ("ProductShelfLife".equals(codeString))
return new Enumeration(this, DataType.PRODUCTSHELFLIFE, code);
if ("Quantity".equals(codeString))
return new Enumeration(this, DataType.QUANTITY, code);
if ("Range".equals(codeString))
return new Enumeration(this, DataType.RANGE, code);
if ("Ratio".equals(codeString))
return new Enumeration(this, DataType.RATIO, code);
if ("Reference".equals(codeString))
return new Enumeration(this, DataType.REFERENCE, code);
if ("RelatedArtifact".equals(codeString))
return new Enumeration(this, DataType.RELATEDARTIFACT, code);
if ("SampledData".equals(codeString))
return new Enumeration(this, DataType.SAMPLEDDATA, code);
if ("Signature".equals(codeString))
return new Enumeration(this, DataType.SIGNATURE, code);
if ("SimpleQuantity".equals(codeString))
return new Enumeration(this, DataType.SIMPLEQUANTITY, code);
if ("SubstanceAmount".equals(codeString))
return new Enumeration(this, DataType.SUBSTANCEAMOUNT, code);
if ("Timing".equals(codeString))
return new Enumeration(this, DataType.TIMING, code);
if ("TriggerDefinition".equals(codeString))
return new Enumeration(this, DataType.TRIGGERDEFINITION, code);
if ("UsageContext".equals(codeString))
return new Enumeration(this, DataType.USAGECONTEXT, code);
if ("base64Binary".equals(codeString))
return new Enumeration(this, DataType.BASE64BINARY, code);
if ("boolean".equals(codeString))
return new Enumeration(this, DataType.BOOLEAN, code);
if ("canonical".equals(codeString))
return new Enumeration(this, DataType.CANONICAL, code);
if ("code".equals(codeString))
return new Enumeration(this, DataType.CODE, code);
if ("date".equals(codeString))
return new Enumeration(this, DataType.DATE, code);
if ("dateTime".equals(codeString))
return new Enumeration(this, DataType.DATETIME, code);
if ("decimal".equals(codeString))
return new Enumeration(this, DataType.DECIMAL, code);
if ("id".equals(codeString))
return new Enumeration(this, DataType.ID, code);
if ("instant".equals(codeString))
return new Enumeration(this, DataType.INSTANT, code);
if ("integer".equals(codeString))
return new Enumeration(this, DataType.INTEGER, code);
if ("markdown".equals(codeString))
return new Enumeration(this, DataType.MARKDOWN, code);
if ("oid".equals(codeString))
return new Enumeration(this, DataType.OID, code);
if ("positiveInt".equals(codeString))
return new Enumeration(this, DataType.POSITIVEINT, code);
if ("string".equals(codeString))
return new Enumeration(this, DataType.STRING, code);
if ("time".equals(codeString))
return new Enumeration(this, DataType.TIME, code);
if ("unsignedInt".equals(codeString))
return new Enumeration(this, DataType.UNSIGNEDINT, code);
if ("uri".equals(codeString))
return new Enumeration(this, DataType.URI, code);
if ("url".equals(codeString))
return new Enumeration(this, DataType.URL, code);
if ("uuid".equals(codeString))
return new Enumeration(this, DataType.UUID, code);
if ("xhtml".equals(codeString))
return new Enumeration(this, DataType.XHTML, code);
throw new FHIRException("Unknown DataType code '" + codeString + "'");
}
public String toCode(DataType code) {
if (code == DataType.ADDRESS)
return "Address";
if (code == DataType.AGE)
return "Age";
if (code == DataType.ANNOTATION)
return "Annotation";
if (code == DataType.ATTACHMENT)
return "Attachment";
if (code == DataType.BACKBONEELEMENT)
return "BackboneElement";
if (code == DataType.CODEABLECONCEPT)
return "CodeableConcept";
if (code == DataType.CODING)
return "Coding";
if (code == DataType.CONTACTDETAIL)
return "ContactDetail";
if (code == DataType.CONTACTPOINT)
return "ContactPoint";
if (code == DataType.CONTRIBUTOR)
return "Contributor";
if (code == DataType.COUNT)
return "Count";
if (code == DataType.DATAREQUIREMENT)
return "DataRequirement";
if (code == DataType.DISTANCE)
return "Distance";
if (code == DataType.DOSAGE)
return "Dosage";
if (code == DataType.DURATION)
return "Duration";
if (code == DataType.ELEMENT)
return "Element";
if (code == DataType.ELEMENTDEFINITION)
return "ElementDefinition";
if (code == DataType.EXPRESSION)
return "Expression";
if (code == DataType.EXTENSION)
return "Extension";
if (code == DataType.HUMANNAME)
return "HumanName";
if (code == DataType.IDENTIFIER)
return "Identifier";
if (code == DataType.MARKETINGSTATUS)
return "MarketingStatus";
if (code == DataType.META)
return "Meta";
if (code == DataType.MONEY)
return "Money";
if (code == DataType.MONEYQUANTITY)
return "MoneyQuantity";
if (code == DataType.NARRATIVE)
return "Narrative";
if (code == DataType.PARAMETERDEFINITION)
return "ParameterDefinition";
if (code == DataType.PERIOD)
return "Period";
if (code == DataType.POPULATION)
return "Population";
if (code == DataType.PRODCHARACTERISTIC)
return "ProdCharacteristic";
if (code == DataType.PRODUCTSHELFLIFE)
return "ProductShelfLife";
if (code == DataType.QUANTITY)
return "Quantity";
if (code == DataType.RANGE)
return "Range";
if (code == DataType.RATIO)
return "Ratio";
if (code == DataType.REFERENCE)
return "Reference";
if (code == DataType.RELATEDARTIFACT)
return "RelatedArtifact";
if (code == DataType.SAMPLEDDATA)
return "SampledData";
if (code == DataType.SIGNATURE)
return "Signature";
if (code == DataType.SIMPLEQUANTITY)
return "SimpleQuantity";
if (code == DataType.SUBSTANCEAMOUNT)
return "SubstanceAmount";
if (code == DataType.TIMING)
return "Timing";
if (code == DataType.TRIGGERDEFINITION)
return "TriggerDefinition";
if (code == DataType.USAGECONTEXT)
return "UsageContext";
if (code == DataType.BASE64BINARY)
return "base64Binary";
if (code == DataType.BOOLEAN)
return "boolean";
if (code == DataType.CANONICAL)
return "canonical";
if (code == DataType.CODE)
return "code";
if (code == DataType.DATE)
return "date";
if (code == DataType.DATETIME)
return "dateTime";
if (code == DataType.DECIMAL)
return "decimal";
if (code == DataType.ID)
return "id";
if (code == DataType.INSTANT)
return "instant";
if (code == DataType.INTEGER)
return "integer";
if (code == DataType.MARKDOWN)
return "markdown";
if (code == DataType.OID)
return "oid";
if (code == DataType.POSITIVEINT)
return "positiveInt";
if (code == DataType.STRING)
return "string";
if (code == DataType.TIME)
return "time";
if (code == DataType.UNSIGNEDINT)
return "unsignedInt";
if (code == DataType.URI)
return "uri";
if (code == DataType.URL)
return "url";
if (code == DataType.UUID)
return "uuid";
if (code == DataType.XHTML)
return "xhtml";
return "?";
}
public String toSystem(DataType code) {
return code.getSystem();
}
}
public enum DefinitionResourceType {
/**
* This resource allows for the definition of some activity to be performed,
* independent of a particular patient, practitioner, or other performance
* context.
*/
ACTIVITYDEFINITION,
/**
* The EventDefinition resource provides a reusable description of when a
* particular event can occur.
*/
EVENTDEFINITION,
/**
* The Measure resource provides the definition of a quality measure.
*/
MEASURE,
/**
* A formal computable definition of an operation (on the RESTful interface) or
* a named query (using the search interaction).
*/
OPERATIONDEFINITION,
/**
* This resource allows for the definition of various types of plans as a
* sharable, consumable, and executable artifact. The resource is general enough
* to support the description of a broad range of clinical artifacts such as
* clinical decision support rules, order sets and protocols.
*/
PLANDEFINITION,
/**
* A structured set of questions intended to guide the collection of answers
* from end-users. Questionnaires provide detailed control over order,
* presentation, phraseology and grouping to allow coherent, consistent data
* collection.
*/
QUESTIONNAIRE,
/**
* added to help the parsers
*/
NULL;
public static DefinitionResourceType fromCode(String codeString) throws FHIRException {
if (codeString == null || "".equals(codeString))
return null;
if ("ActivityDefinition".equals(codeString))
return ACTIVITYDEFINITION;
if ("EventDefinition".equals(codeString))
return EVENTDEFINITION;
if ("Measure".equals(codeString))
return MEASURE;
if ("OperationDefinition".equals(codeString))
return OPERATIONDEFINITION;
if ("PlanDefinition".equals(codeString))
return PLANDEFINITION;
if ("Questionnaire".equals(codeString))
return QUESTIONNAIRE;
throw new FHIRException("Unknown DefinitionResourceType code '" + codeString + "'");
}
public String toCode() {
switch (this) {
case ACTIVITYDEFINITION:
return "ActivityDefinition";
case EVENTDEFINITION:
return "EventDefinition";
case MEASURE:
return "Measure";
case OPERATIONDEFINITION:
return "OperationDefinition";
case PLANDEFINITION:
return "PlanDefinition";
case QUESTIONNAIRE:
return "Questionnaire";
case NULL:
return null;
default:
return "?";
}
}
public String getSystem() {
switch (this) {
case ACTIVITYDEFINITION:
return "http://hl7.org/fhir/definition-resource-types";
case EVENTDEFINITION:
return "http://hl7.org/fhir/definition-resource-types";
case MEASURE:
return "http://hl7.org/fhir/definition-resource-types";
case OPERATIONDEFINITION:
return "http://hl7.org/fhir/definition-resource-types";
case PLANDEFINITION:
return "http://hl7.org/fhir/definition-resource-types";
case QUESTIONNAIRE:
return "http://hl7.org/fhir/definition-resource-types";
case NULL:
return null;
default:
return "?";
}
}
public String getDefinition() {
switch (this) {
case ACTIVITYDEFINITION:
return "This resource allows for the definition of some activity to be performed, independent of a particular patient, practitioner, or other performance context.";
case EVENTDEFINITION:
return "The EventDefinition resource provides a reusable description of when a particular event can occur.";
case MEASURE:
return "The Measure resource provides the definition of a quality measure.";
case OPERATIONDEFINITION:
return "A formal computable definition of an operation (on the RESTful interface) or a named query (using the search interaction).";
case PLANDEFINITION:
return "This resource allows for the definition of various types of plans as a sharable, consumable, and executable artifact. The resource is general enough to support the description of a broad range of clinical artifacts such as clinical decision support rules, order sets and protocols.";
case QUESTIONNAIRE:
return "A structured set of questions intended to guide the collection of answers from end-users. Questionnaires provide detailed control over order, presentation, phraseology and grouping to allow coherent, consistent data collection.";
case NULL:
return null;
default:
return "?";
}
}
public String getDisplay() {
switch (this) {
case ACTIVITYDEFINITION:
return "ActivityDefinition";
case EVENTDEFINITION:
return "EventDefinition";
case MEASURE:
return "Measure";
case OPERATIONDEFINITION:
return "OperationDefinition";
case PLANDEFINITION:
return "PlanDefinition";
case QUESTIONNAIRE:
return "Questionnaire";
case NULL:
return null;
default:
return "?";
}
}
}
public static class DefinitionResourceTypeEnumFactory implements EnumFactory {
public DefinitionResourceType fromCode(String codeString) throws IllegalArgumentException {
if (codeString == null || "".equals(codeString))
if (codeString == null || "".equals(codeString))
return null;
if ("ActivityDefinition".equals(codeString))
return DefinitionResourceType.ACTIVITYDEFINITION;
if ("EventDefinition".equals(codeString))
return DefinitionResourceType.EVENTDEFINITION;
if ("Measure".equals(codeString))
return DefinitionResourceType.MEASURE;
if ("OperationDefinition".equals(codeString))
return DefinitionResourceType.OPERATIONDEFINITION;
if ("PlanDefinition".equals(codeString))
return DefinitionResourceType.PLANDEFINITION;
if ("Questionnaire".equals(codeString))
return DefinitionResourceType.QUESTIONNAIRE;
throw new IllegalArgumentException("Unknown DefinitionResourceType code '" + codeString + "'");
}
public Enumeration fromType(PrimitiveType> code) throws FHIRException {
if (code == null)
return null;
if (code.isEmpty())
return new Enumeration(this, DefinitionResourceType.NULL, code);
String codeString = code.asStringValue();
if (codeString == null || "".equals(codeString))
return new Enumeration(this, DefinitionResourceType.NULL, code);
if ("ActivityDefinition".equals(codeString))
return new Enumeration(this, DefinitionResourceType.ACTIVITYDEFINITION, code);
if ("EventDefinition".equals(codeString))
return new Enumeration(this, DefinitionResourceType.EVENTDEFINITION, code);
if ("Measure".equals(codeString))
return new Enumeration(this, DefinitionResourceType.MEASURE, code);
if ("OperationDefinition".equals(codeString))
return new Enumeration(this, DefinitionResourceType.OPERATIONDEFINITION, code);
if ("PlanDefinition".equals(codeString))
return new Enumeration(this, DefinitionResourceType.PLANDEFINITION, code);
if ("Questionnaire".equals(codeString))
return new Enumeration(this, DefinitionResourceType.QUESTIONNAIRE, code);
throw new FHIRException("Unknown DefinitionResourceType code '" + codeString + "'");
}
public String toCode(DefinitionResourceType code) {
if (code == DefinitionResourceType.ACTIVITYDEFINITION)
return "ActivityDefinition";
if (code == DefinitionResourceType.EVENTDEFINITION)
return "EventDefinition";
if (code == DefinitionResourceType.MEASURE)
return "Measure";
if (code == DefinitionResourceType.OPERATIONDEFINITION)
return "OperationDefinition";
if (code == DefinitionResourceType.PLANDEFINITION)
return "PlanDefinition";
if (code == DefinitionResourceType.QUESTIONNAIRE)
return "Questionnaire";
return "?";
}
public String toSystem(DefinitionResourceType code) {
return code.getSystem();
}
}
public enum DocumentReferenceStatus {
/**
* This is the current reference for this document.
*/
CURRENT,
/**
* This reference has been superseded by another reference.
*/
SUPERSEDED,
/**
* This reference was created in error.
*/
ENTEREDINERROR,
/**
* added to help the parsers
*/
NULL;
public static DocumentReferenceStatus fromCode(String codeString) throws FHIRException {
if (codeString == null || "".equals(codeString))
return null;
if ("current".equals(codeString))
return CURRENT;
if ("superseded".equals(codeString))
return SUPERSEDED;
if ("entered-in-error".equals(codeString))
return ENTEREDINERROR;
throw new FHIRException("Unknown DocumentReferenceStatus code '" + codeString + "'");
}
public String toCode() {
switch (this) {
case CURRENT:
return "current";
case SUPERSEDED:
return "superseded";
case ENTEREDINERROR:
return "entered-in-error";
case NULL:
return null;
default:
return "?";
}
}
public String getSystem() {
switch (this) {
case CURRENT:
return "http://hl7.org/fhir/document-reference-status";
case SUPERSEDED:
return "http://hl7.org/fhir/document-reference-status";
case ENTEREDINERROR:
return "http://hl7.org/fhir/document-reference-status";
case NULL:
return null;
default:
return "?";
}
}
public String getDefinition() {
switch (this) {
case CURRENT:
return "This is the current reference for this document.";
case SUPERSEDED:
return "This reference has been superseded by another reference.";
case ENTEREDINERROR:
return "This reference was created in error.";
case NULL:
return null;
default:
return "?";
}
}
public String getDisplay() {
switch (this) {
case CURRENT:
return "Current";
case SUPERSEDED:
return "Superseded";
case ENTEREDINERROR:
return "Entered in Error";
case NULL:
return null;
default:
return "?";
}
}
}
public static class DocumentReferenceStatusEnumFactory implements EnumFactory {
public DocumentReferenceStatus fromCode(String codeString) throws IllegalArgumentException {
if (codeString == null || "".equals(codeString))
if (codeString == null || "".equals(codeString))
return null;
if ("current".equals(codeString))
return DocumentReferenceStatus.CURRENT;
if ("superseded".equals(codeString))
return DocumentReferenceStatus.SUPERSEDED;
if ("entered-in-error".equals(codeString))
return DocumentReferenceStatus.ENTEREDINERROR;
throw new IllegalArgumentException("Unknown DocumentReferenceStatus code '" + codeString + "'");
}
public Enumeration fromType(PrimitiveType> code) throws FHIRException {
if (code == null)
return null;
if (code.isEmpty())
return new Enumeration(this, DocumentReferenceStatus.NULL, code);
String codeString = code.asStringValue();
if (codeString == null || "".equals(codeString))
return new Enumeration(this, DocumentReferenceStatus.NULL, code);
if ("current".equals(codeString))
return new Enumeration(this, DocumentReferenceStatus.CURRENT, code);
if ("superseded".equals(codeString))
return new Enumeration(this, DocumentReferenceStatus.SUPERSEDED, code);
if ("entered-in-error".equals(codeString))
return new Enumeration(this, DocumentReferenceStatus.ENTEREDINERROR, code);
throw new FHIRException("Unknown DocumentReferenceStatus code '" + codeString + "'");
}
public String toCode(DocumentReferenceStatus code) {
if (code == DocumentReferenceStatus.CURRENT)
return "current";
if (code == DocumentReferenceStatus.SUPERSEDED)
return "superseded";
if (code == DocumentReferenceStatus.ENTEREDINERROR)
return "entered-in-error";
return "?";
}
public String toSystem(DocumentReferenceStatus code) {
return code.getSystem();
}
}
public enum EventResourceType {
/**
* Item containing charge code(s) associated with the provision of healthcare
* provider products.
*/
CHARGEITEM,
/**
* Remittance resource.
*/
CLAIMRESPONSE,
/**
* A clinical assessment performed when planning treatments and management
* strategies for a patient.
*/
CLINICALIMPRESSION,
/**
* A record of information transmitted from a sender to a receiver.
*/
COMMUNICATION,
/**
* A set of resources composed into a single coherent clinical statement with
* clinical attestation.
*/
COMPOSITION,
/**
* Detailed information about conditions, problems or diagnoses.
*/
CONDITION,
/**
* A healthcare consumer's policy choices to permits or denies recipients or
* roles to perform actions for specific purposes and periods of time.
*/
CONSENT,
/**
* Insurance or medical plan or a payment agreement.
*/
COVERAGE,
/**
* Record of use of a device.
*/
DEVICEUSESTATEMENT,
/**
* A Diagnostic report - a combination of request information, atomic results,
* images, interpretation, as well as formatted reports.
*/
DIAGNOSTICREPORT,
/**
* A list that defines a set of documents.
*/
DOCUMENTMANIFEST,
/**
* A reference to a document.
*/
DOCUMENTREFERENCE,
/**
* An interaction during which services are provided to the patient.
*/
ENCOUNTER,
/**
* EnrollmentResponse resource.
*/
ENROLLMENTRESPONSE,
/**
* An association of a Patient with an Organization and Healthcare Provider(s)
* for a period of time that the Organization assumes some level of
* responsibility.
*/
EPISODEOFCARE,
/**
* Explanation of Benefit resource.
*/
EXPLANATIONOFBENEFIT,
/**
* Information about patient's relatives, relevant for patient.
*/
FAMILYMEMBERHISTORY,
/**
* The formal response to a guidance request.
*/
GUIDANCERESPONSE,
/**
* A set of images produced in single study (one or more series of references
* images).
*/
IMAGINGSTUDY,
/**
* Immunization event information.
*/
IMMUNIZATION,
/**
* Results of a measure evaluation.
*/
MEASUREREPORT,
/**
* A photo, video, or audio recording acquired or used in healthcare. The actual
* content may be inline or provided by direct reference.
*/
MEDIA,
/**
* Administration of medication to a patient.
*/
MEDICATIONADMINISTRATION,
/**
* Dispensing a medication to a named patient.
*/
MEDICATIONDISPENSE,
/**
* Record of medication being taken by a patient.
*/
MEDICATIONSTATEMENT,
/**
* Measurements and simple assertions.
*/
OBSERVATION,
/**
* PaymentNotice request.
*/
PAYMENTNOTICE,
/**
* PaymentReconciliation resource.
*/
PAYMENTRECONCILIATION,
/**
* An action that is being or was performed on a patient.
*/
PROCEDURE,
/**
* ProcessResponse resource.
*/
PROCESSRESPONSE,
/**
* A structured set of questions and their answers.
*/
QUESTIONNAIRERESPONSE,
/**
* Potential outcomes for a subject with likelihood.
*/
RISKASSESSMENT,
/**
* Delivery of bulk Supplies.
*/
SUPPLYDELIVERY,
/**
* A task to be performed.
*/
TASK,
/**
* added to help the parsers
*/
NULL;
public static EventResourceType fromCode(String codeString) throws FHIRException {
if (codeString == null || "".equals(codeString))
return null;
if ("ChargeItem".equals(codeString))
return CHARGEITEM;
if ("ClaimResponse".equals(codeString))
return CLAIMRESPONSE;
if ("ClinicalImpression".equals(codeString))
return CLINICALIMPRESSION;
if ("Communication".equals(codeString))
return COMMUNICATION;
if ("Composition".equals(codeString))
return COMPOSITION;
if ("Condition".equals(codeString))
return CONDITION;
if ("Consent".equals(codeString))
return CONSENT;
if ("Coverage".equals(codeString))
return COVERAGE;
if ("DeviceUseStatement".equals(codeString))
return DEVICEUSESTATEMENT;
if ("DiagnosticReport".equals(codeString))
return DIAGNOSTICREPORT;
if ("DocumentManifest".equals(codeString))
return DOCUMENTMANIFEST;
if ("DocumentReference".equals(codeString))
return DOCUMENTREFERENCE;
if ("Encounter".equals(codeString))
return ENCOUNTER;
if ("EnrollmentResponse".equals(codeString))
return ENROLLMENTRESPONSE;
if ("EpisodeOfCare".equals(codeString))
return EPISODEOFCARE;
if ("ExplanationOfBenefit".equals(codeString))
return EXPLANATIONOFBENEFIT;
if ("FamilyMemberHistory".equals(codeString))
return FAMILYMEMBERHISTORY;
if ("GuidanceResponse".equals(codeString))
return GUIDANCERESPONSE;
if ("ImagingStudy".equals(codeString))
return IMAGINGSTUDY;
if ("Immunization".equals(codeString))
return IMMUNIZATION;
if ("MeasureReport".equals(codeString))
return MEASUREREPORT;
if ("Media".equals(codeString))
return MEDIA;
if ("MedicationAdministration".equals(codeString))
return MEDICATIONADMINISTRATION;
if ("MedicationDispense".equals(codeString))
return MEDICATIONDISPENSE;
if ("MedicationStatement".equals(codeString))
return MEDICATIONSTATEMENT;
if ("Observation".equals(codeString))
return OBSERVATION;
if ("PaymentNotice".equals(codeString))
return PAYMENTNOTICE;
if ("PaymentReconciliation".equals(codeString))
return PAYMENTRECONCILIATION;
if ("Procedure".equals(codeString))
return PROCEDURE;
if ("ProcessResponse".equals(codeString))
return PROCESSRESPONSE;
if ("QuestionnaireResponse".equals(codeString))
return QUESTIONNAIRERESPONSE;
if ("RiskAssessment".equals(codeString))
return RISKASSESSMENT;
if ("SupplyDelivery".equals(codeString))
return SUPPLYDELIVERY;
if ("Task".equals(codeString))
return TASK;
throw new FHIRException("Unknown EventResourceType code '" + codeString + "'");
}
public String toCode() {
switch (this) {
case CHARGEITEM:
return "ChargeItem";
case CLAIMRESPONSE:
return "ClaimResponse";
case CLINICALIMPRESSION:
return "ClinicalImpression";
case COMMUNICATION:
return "Communication";
case COMPOSITION:
return "Composition";
case CONDITION:
return "Condition";
case CONSENT:
return "Consent";
case COVERAGE:
return "Coverage";
case DEVICEUSESTATEMENT:
return "DeviceUseStatement";
case DIAGNOSTICREPORT:
return "DiagnosticReport";
case DOCUMENTMANIFEST:
return "DocumentManifest";
case DOCUMENTREFERENCE:
return "DocumentReference";
case ENCOUNTER:
return "Encounter";
case ENROLLMENTRESPONSE:
return "EnrollmentResponse";
case EPISODEOFCARE:
return "EpisodeOfCare";
case EXPLANATIONOFBENEFIT:
return "ExplanationOfBenefit";
case FAMILYMEMBERHISTORY:
return "FamilyMemberHistory";
case GUIDANCERESPONSE:
return "GuidanceResponse";
case IMAGINGSTUDY:
return "ImagingStudy";
case IMMUNIZATION:
return "Immunization";
case MEASUREREPORT:
return "MeasureReport";
case MEDIA:
return "Media";
case MEDICATIONADMINISTRATION:
return "MedicationAdministration";
case MEDICATIONDISPENSE:
return "MedicationDispense";
case MEDICATIONSTATEMENT:
return "MedicationStatement";
case OBSERVATION:
return "Observation";
case PAYMENTNOTICE:
return "PaymentNotice";
case PAYMENTRECONCILIATION:
return "PaymentReconciliation";
case PROCEDURE:
return "Procedure";
case PROCESSRESPONSE:
return "ProcessResponse";
case QUESTIONNAIRERESPONSE:
return "QuestionnaireResponse";
case RISKASSESSMENT:
return "RiskAssessment";
case SUPPLYDELIVERY:
return "SupplyDelivery";
case TASK:
return "Task";
case NULL:
return null;
default:
return "?";
}
}
public String getSystem() {
switch (this) {
case CHARGEITEM:
return "http://hl7.org/fhir/event-resource-types";
case CLAIMRESPONSE:
return "http://hl7.org/fhir/event-resource-types";
case CLINICALIMPRESSION:
return "http://hl7.org/fhir/event-resource-types";
case COMMUNICATION:
return "http://hl7.org/fhir/event-resource-types";
case COMPOSITION:
return "http://hl7.org/fhir/event-resource-types";
case CONDITION:
return "http://hl7.org/fhir/event-resource-types";
case CONSENT:
return "http://hl7.org/fhir/event-resource-types";
case COVERAGE:
return "http://hl7.org/fhir/event-resource-types";
case DEVICEUSESTATEMENT:
return "http://hl7.org/fhir/event-resource-types";
case DIAGNOSTICREPORT:
return "http://hl7.org/fhir/event-resource-types";
case DOCUMENTMANIFEST:
return "http://hl7.org/fhir/event-resource-types";
case DOCUMENTREFERENCE:
return "http://hl7.org/fhir/event-resource-types";
case ENCOUNTER:
return "http://hl7.org/fhir/event-resource-types";
case ENROLLMENTRESPONSE:
return "http://hl7.org/fhir/event-resource-types";
case EPISODEOFCARE:
return "http://hl7.org/fhir/event-resource-types";
case EXPLANATIONOFBENEFIT:
return "http://hl7.org/fhir/event-resource-types";
case FAMILYMEMBERHISTORY:
return "http://hl7.org/fhir/event-resource-types";
case GUIDANCERESPONSE:
return "http://hl7.org/fhir/event-resource-types";
case IMAGINGSTUDY:
return "http://hl7.org/fhir/event-resource-types";
case IMMUNIZATION:
return "http://hl7.org/fhir/event-resource-types";
case MEASUREREPORT:
return "http://hl7.org/fhir/event-resource-types";
case MEDIA:
return "http://hl7.org/fhir/event-resource-types";
case MEDICATIONADMINISTRATION:
return "http://hl7.org/fhir/event-resource-types";
case MEDICATIONDISPENSE:
return "http://hl7.org/fhir/event-resource-types";
case MEDICATIONSTATEMENT:
return "http://hl7.org/fhir/event-resource-types";
case OBSERVATION:
return "http://hl7.org/fhir/event-resource-types";
case PAYMENTNOTICE:
return "http://hl7.org/fhir/event-resource-types";
case PAYMENTRECONCILIATION:
return "http://hl7.org/fhir/event-resource-types";
case PROCEDURE:
return "http://hl7.org/fhir/event-resource-types";
case PROCESSRESPONSE:
return "http://hl7.org/fhir/event-resource-types";
case QUESTIONNAIRERESPONSE:
return "http://hl7.org/fhir/event-resource-types";
case RISKASSESSMENT:
return "http://hl7.org/fhir/event-resource-types";
case SUPPLYDELIVERY:
return "http://hl7.org/fhir/event-resource-types";
case TASK:
return "http://hl7.org/fhir/event-resource-types";
case NULL:
return null;
default:
return "?";
}
}
public String getDefinition() {
switch (this) {
case CHARGEITEM:
return "Item containing charge code(s) associated with the provision of healthcare provider products.";
case CLAIMRESPONSE:
return "Remittance resource.";
case CLINICALIMPRESSION:
return "A clinical assessment performed when planning treatments and management strategies for a patient.";
case COMMUNICATION:
return "A record of information transmitted from a sender to a receiver.";
case COMPOSITION:
return "A set of resources composed into a single coherent clinical statement with clinical attestation.";
case CONDITION:
return "Detailed information about conditions, problems or diagnoses.";
case CONSENT:
return "A healthcare consumer's policy choices to permits or denies recipients or roles to perform actions for specific purposes and periods of time.";
case COVERAGE:
return "Insurance or medical plan or a payment agreement.";
case DEVICEUSESTATEMENT:
return "Record of use of a device.";
case DIAGNOSTICREPORT:
return "A Diagnostic report - a combination of request information, atomic results, images, interpretation, as well as formatted reports.";
case DOCUMENTMANIFEST:
return "A list that defines a set of documents.";
case DOCUMENTREFERENCE:
return "A reference to a document.";
case ENCOUNTER:
return "An interaction during which services are provided to the patient.";
case ENROLLMENTRESPONSE:
return "EnrollmentResponse resource.";
case EPISODEOFCARE:
return "An association of a Patient with an Organization and Healthcare Provider(s) for a period of time that the Organization assumes some level of responsibility.";
case EXPLANATIONOFBENEFIT:
return "Explanation of Benefit resource.";
case FAMILYMEMBERHISTORY:
return "Information about patient's relatives, relevant for patient.";
case GUIDANCERESPONSE:
return "The formal response to a guidance request.";
case IMAGINGSTUDY:
return "A set of images produced in single study (one or more series of references images).";
case IMMUNIZATION:
return "Immunization event information.";
case MEASUREREPORT:
return "Results of a measure evaluation.";
case MEDIA:
return "A photo, video, or audio recording acquired or used in healthcare. The actual content may be inline or provided by direct reference.";
case MEDICATIONADMINISTRATION:
return "Administration of medication to a patient.";
case MEDICATIONDISPENSE:
return "Dispensing a medication to a named patient.";
case MEDICATIONSTATEMENT:
return "Record of medication being taken by a patient.";
case OBSERVATION:
return "Measurements and simple assertions.";
case PAYMENTNOTICE:
return "PaymentNotice request.";
case PAYMENTRECONCILIATION:
return "PaymentReconciliation resource.";
case PROCEDURE:
return "An action that is being or was performed on a patient.";
case PROCESSRESPONSE:
return "ProcessResponse resource.";
case QUESTIONNAIRERESPONSE:
return "A structured set of questions and their answers.";
case RISKASSESSMENT:
return "Potential outcomes for a subject with likelihood.";
case SUPPLYDELIVERY:
return "Delivery of bulk Supplies.";
case TASK:
return "A task to be performed.";
case NULL:
return null;
default:
return "?";
}
}
public String getDisplay() {
switch (this) {
case CHARGEITEM:
return "ChargeItem";
case CLAIMRESPONSE:
return "ClaimResponse";
case CLINICALIMPRESSION:
return "ClinicalImpression";
case COMMUNICATION:
return "Communication";
case COMPOSITION:
return "Composition";
case CONDITION:
return "Condition";
case CONSENT:
return "Consent";
case COVERAGE:
return "Coverage";
case DEVICEUSESTATEMENT:
return "DeviceUseStatement";
case DIAGNOSTICREPORT:
return "DiagnosticReport";
case DOCUMENTMANIFEST:
return "DocumentManifest";
case DOCUMENTREFERENCE:
return "DocumentReference";
case ENCOUNTER:
return "Encounter";
case ENROLLMENTRESPONSE:
return "EnrollmentResponse";
case EPISODEOFCARE:
return "EpisodeOfCare";
case EXPLANATIONOFBENEFIT:
return "ExplanationOfBenefit";
case FAMILYMEMBERHISTORY:
return "FamilyMemberHistory";
case GUIDANCERESPONSE:
return "GuidanceResponse";
case IMAGINGSTUDY:
return "ImagingStudy";
case IMMUNIZATION:
return "Immunization";
case MEASUREREPORT:
return "MeasureReport";
case MEDIA:
return "Media";
case MEDICATIONADMINISTRATION:
return "MedicationAdministration";
case MEDICATIONDISPENSE:
return "MedicationDispense";
case MEDICATIONSTATEMENT:
return "MedicationStatement";
case OBSERVATION:
return "Observation";
case PAYMENTNOTICE:
return "PaymentNotice";
case PAYMENTRECONCILIATION:
return "PaymentReconciliation";
case PROCEDURE:
return "Procedure";
case PROCESSRESPONSE:
return "ProcessResponse";
case QUESTIONNAIRERESPONSE:
return "QuestionnaireResponse";
case RISKASSESSMENT:
return "RiskAssessment";
case SUPPLYDELIVERY:
return "SupplyDelivery";
case TASK:
return "Task";
case NULL:
return null;
default:
return "?";
}
}
}
public static class EventResourceTypeEnumFactory implements EnumFactory {
public EventResourceType fromCode(String codeString) throws IllegalArgumentException {
if (codeString == null || "".equals(codeString))
if (codeString == null || "".equals(codeString))
return null;
if ("ChargeItem".equals(codeString))
return EventResourceType.CHARGEITEM;
if ("ClaimResponse".equals(codeString))
return EventResourceType.CLAIMRESPONSE;
if ("ClinicalImpression".equals(codeString))
return EventResourceType.CLINICALIMPRESSION;
if ("Communication".equals(codeString))
return EventResourceType.COMMUNICATION;
if ("Composition".equals(codeString))
return EventResourceType.COMPOSITION;
if ("Condition".equals(codeString))
return EventResourceType.CONDITION;
if ("Consent".equals(codeString))
return EventResourceType.CONSENT;
if ("Coverage".equals(codeString))
return EventResourceType.COVERAGE;
if ("DeviceUseStatement".equals(codeString))
return EventResourceType.DEVICEUSESTATEMENT;
if ("DiagnosticReport".equals(codeString))
return EventResourceType.DIAGNOSTICREPORT;
if ("DocumentManifest".equals(codeString))
return EventResourceType.DOCUMENTMANIFEST;
if ("DocumentReference".equals(codeString))
return EventResourceType.DOCUMENTREFERENCE;
if ("Encounter".equals(codeString))
return EventResourceType.ENCOUNTER;
if ("EnrollmentResponse".equals(codeString))
return EventResourceType.ENROLLMENTRESPONSE;
if ("EpisodeOfCare".equals(codeString))
return EventResourceType.EPISODEOFCARE;
if ("ExplanationOfBenefit".equals(codeString))
return EventResourceType.EXPLANATIONOFBENEFIT;
if ("FamilyMemberHistory".equals(codeString))
return EventResourceType.FAMILYMEMBERHISTORY;
if ("GuidanceResponse".equals(codeString))
return EventResourceType.GUIDANCERESPONSE;
if ("ImagingStudy".equals(codeString))
return EventResourceType.IMAGINGSTUDY;
if ("Immunization".equals(codeString))
return EventResourceType.IMMUNIZATION;
if ("MeasureReport".equals(codeString))
return EventResourceType.MEASUREREPORT;
if ("Media".equals(codeString))
return EventResourceType.MEDIA;
if ("MedicationAdministration".equals(codeString))
return EventResourceType.MEDICATIONADMINISTRATION;
if ("MedicationDispense".equals(codeString))
return EventResourceType.MEDICATIONDISPENSE;
if ("MedicationStatement".equals(codeString))
return EventResourceType.MEDICATIONSTATEMENT;
if ("Observation".equals(codeString))
return EventResourceType.OBSERVATION;
if ("PaymentNotice".equals(codeString))
return EventResourceType.PAYMENTNOTICE;
if ("PaymentReconciliation".equals(codeString))
return EventResourceType.PAYMENTRECONCILIATION;
if ("Procedure".equals(codeString))
return EventResourceType.PROCEDURE;
if ("ProcessResponse".equals(codeString))
return EventResourceType.PROCESSRESPONSE;
if ("QuestionnaireResponse".equals(codeString))
return EventResourceType.QUESTIONNAIRERESPONSE;
if ("RiskAssessment".equals(codeString))
return EventResourceType.RISKASSESSMENT;
if ("SupplyDelivery".equals(codeString))
return EventResourceType.SUPPLYDELIVERY;
if ("Task".equals(codeString))
return EventResourceType.TASK;
throw new IllegalArgumentException("Unknown EventResourceType code '" + codeString + "'");
}
public Enumeration fromType(PrimitiveType> code) throws FHIRException {
if (code == null)
return null;
if (code.isEmpty())
return new Enumeration(this, EventResourceType.NULL, code);
String codeString = code.asStringValue();
if (codeString == null || "".equals(codeString))
return new Enumeration(this, EventResourceType.NULL, code);
if ("ChargeItem".equals(codeString))
return new Enumeration(this, EventResourceType.CHARGEITEM, code);
if ("ClaimResponse".equals(codeString))
return new Enumeration(this, EventResourceType.CLAIMRESPONSE, code);
if ("ClinicalImpression".equals(codeString))
return new Enumeration(this, EventResourceType.CLINICALIMPRESSION, code);
if ("Communication".equals(codeString))
return new Enumeration(this, EventResourceType.COMMUNICATION, code);
if ("Composition".equals(codeString))
return new Enumeration(this, EventResourceType.COMPOSITION, code);
if ("Condition".equals(codeString))
return new Enumeration(this, EventResourceType.CONDITION, code);
if ("Consent".equals(codeString))
return new Enumeration(this, EventResourceType.CONSENT, code);
if ("Coverage".equals(codeString))
return new Enumeration(this, EventResourceType.COVERAGE, code);
if ("DeviceUseStatement".equals(codeString))
return new Enumeration(this, EventResourceType.DEVICEUSESTATEMENT, code);
if ("DiagnosticReport".equals(codeString))
return new Enumeration(this, EventResourceType.DIAGNOSTICREPORT, code);
if ("DocumentManifest".equals(codeString))
return new Enumeration(this, EventResourceType.DOCUMENTMANIFEST, code);
if ("DocumentReference".equals(codeString))
return new Enumeration(this, EventResourceType.DOCUMENTREFERENCE, code);
if ("Encounter".equals(codeString))
return new Enumeration(this, EventResourceType.ENCOUNTER, code);
if ("EnrollmentResponse".equals(codeString))
return new Enumeration(this, EventResourceType.ENROLLMENTRESPONSE, code);
if ("EpisodeOfCare".equals(codeString))
return new Enumeration(this, EventResourceType.EPISODEOFCARE, code);
if ("ExplanationOfBenefit".equals(codeString))
return new Enumeration(this, EventResourceType.EXPLANATIONOFBENEFIT, code);
if ("FamilyMemberHistory".equals(codeString))
return new Enumeration(this, EventResourceType.FAMILYMEMBERHISTORY, code);
if ("GuidanceResponse".equals(codeString))
return new Enumeration(this, EventResourceType.GUIDANCERESPONSE, code);
if ("ImagingStudy".equals(codeString))
return new Enumeration(this, EventResourceType.IMAGINGSTUDY, code);
if ("Immunization".equals(codeString))
return new Enumeration(this, EventResourceType.IMMUNIZATION, code);
if ("MeasureReport".equals(codeString))
return new Enumeration(this, EventResourceType.MEASUREREPORT, code);
if ("Media".equals(codeString))
return new Enumeration(this, EventResourceType.MEDIA, code);
if ("MedicationAdministration".equals(codeString))
return new Enumeration(this, EventResourceType.MEDICATIONADMINISTRATION, code);
if ("MedicationDispense".equals(codeString))
return new Enumeration(this, EventResourceType.MEDICATIONDISPENSE, code);
if ("MedicationStatement".equals(codeString))
return new Enumeration(this, EventResourceType.MEDICATIONSTATEMENT, code);
if ("Observation".equals(codeString))
return new Enumeration(this, EventResourceType.OBSERVATION, code);
if ("PaymentNotice".equals(codeString))
return new Enumeration(this, EventResourceType.PAYMENTNOTICE, code);
if ("PaymentReconciliation".equals(codeString))
return new Enumeration(this, EventResourceType.PAYMENTRECONCILIATION, code);
if ("Procedure".equals(codeString))
return new Enumeration(this, EventResourceType.PROCEDURE, code);
if ("ProcessResponse".equals(codeString))
return new Enumeration(this, EventResourceType.PROCESSRESPONSE, code);
if ("QuestionnaireResponse".equals(codeString))
return new Enumeration(this, EventResourceType.QUESTIONNAIRERESPONSE, code);
if ("RiskAssessment".equals(codeString))
return new Enumeration(this, EventResourceType.RISKASSESSMENT, code);
if ("SupplyDelivery".equals(codeString))
return new Enumeration(this, EventResourceType.SUPPLYDELIVERY, code);
if ("Task".equals(codeString))
return new Enumeration(this, EventResourceType.TASK, code);
throw new FHIRException("Unknown EventResourceType code '" + codeString + "'");
}
public String toCode(EventResourceType code) {
if (code == EventResourceType.CHARGEITEM)
return "ChargeItem";
if (code == EventResourceType.CLAIMRESPONSE)
return "ClaimResponse";
if (code == EventResourceType.CLINICALIMPRESSION)
return "ClinicalImpression";
if (code == EventResourceType.COMMUNICATION)
return "Communication";
if (code == EventResourceType.COMPOSITION)
return "Composition";
if (code == EventResourceType.CONDITION)
return "Condition";
if (code == EventResourceType.CONSENT)
return "Consent";
if (code == EventResourceType.COVERAGE)
return "Coverage";
if (code == EventResourceType.DEVICEUSESTATEMENT)
return "DeviceUseStatement";
if (code == EventResourceType.DIAGNOSTICREPORT)
return "DiagnosticReport";
if (code == EventResourceType.DOCUMENTMANIFEST)
return "DocumentManifest";
if (code == EventResourceType.DOCUMENTREFERENCE)
return "DocumentReference";
if (code == EventResourceType.ENCOUNTER)
return "Encounter";
if (code == EventResourceType.ENROLLMENTRESPONSE)
return "EnrollmentResponse";
if (code == EventResourceType.EPISODEOFCARE)
return "EpisodeOfCare";
if (code == EventResourceType.EXPLANATIONOFBENEFIT)
return "ExplanationOfBenefit";
if (code == EventResourceType.FAMILYMEMBERHISTORY)
return "FamilyMemberHistory";
if (code == EventResourceType.GUIDANCERESPONSE)
return "GuidanceResponse";
if (code == EventResourceType.IMAGINGSTUDY)
return "ImagingStudy";
if (code == EventResourceType.IMMUNIZATION)
return "Immunization";
if (code == EventResourceType.MEASUREREPORT)
return "MeasureReport";
if (code == EventResourceType.MEDIA)
return "Media";
if (code == EventResourceType.MEDICATIONADMINISTRATION)
return "MedicationAdministration";
if (code == EventResourceType.MEDICATIONDISPENSE)
return "MedicationDispense";
if (code == EventResourceType.MEDICATIONSTATEMENT)
return "MedicationStatement";
if (code == EventResourceType.OBSERVATION)
return "Observation";
if (code == EventResourceType.PAYMENTNOTICE)
return "PaymentNotice";
if (code == EventResourceType.PAYMENTRECONCILIATION)
return "PaymentReconciliation";
if (code == EventResourceType.PROCEDURE)
return "Procedure";
if (code == EventResourceType.PROCESSRESPONSE)
return "ProcessResponse";
if (code == EventResourceType.QUESTIONNAIRERESPONSE)
return "QuestionnaireResponse";
if (code == EventResourceType.RISKASSESSMENT)
return "RiskAssessment";
if (code == EventResourceType.SUPPLYDELIVERY)
return "SupplyDelivery";
if (code == EventResourceType.TASK)
return "Task";
return "?";
}
public String toSystem(EventResourceType code) {
return code.getSystem();
}
}
public enum FHIRAllTypes {
/**
* An address expressed using postal conventions (as opposed to GPS or other
* location definition formats). This data type may be used to convey addresses
* for use in delivering mail as well as for visiting locations which might not
* be valid for mail delivery. There are a variety of postal address formats
* defined around the world.
*/
ADDRESS,
/**
* A duration of time during which an organism (or a process) has existed.
*/
AGE,
/**
* A text note which also contains information about who made the statement and
* when.
*/
ANNOTATION,
/**
* For referring to data content defined in other formats.
*/
ATTACHMENT,
/**
* Base definition for all elements that are defined inside a resource - but not
* those in a data type.
*/
BACKBONEELEMENT,
/**
* A concept that may be defined by a formal reference to a terminology or
* ontology or may be provided by text.
*/
CODEABLECONCEPT,
/**
* A reference to a code defined by a terminology system.
*/
CODING,
/**
* Specifies contact information for a person or organization.
*/
CONTACTDETAIL,
/**
* Details for all kinds of technology mediated contact points for a person or
* organization, including telephone, email, etc.
*/
CONTACTPOINT,
/**
* A contributor to the content of a knowledge asset, including authors,
* editors, reviewers, and endorsers.
*/
CONTRIBUTOR,
/**
* A measured amount (or an amount that can potentially be measured). Note that
* measured amounts include amounts that are not precisely quantified, including
* amounts involving arbitrary units and floating currencies.
*/
COUNT,
/**
* Describes a required data item for evaluation in terms of the type of data,
* and optional code or date-based filters of the data.
*/
DATAREQUIREMENT,
/**
* A length - a value with a unit that is a physical distance.
*/
DISTANCE,
/**
* Indicates how the medication is/was taken or should be taken by the patient.
*/
DOSAGE,
/**
* A length of time.
*/
DURATION,
/**
* Base definition for all elements in a resource.
*/
ELEMENT,
/**
* Captures constraints on each element within the resource, profile, or
* extension.
*/
ELEMENTDEFINITION,
/**
* A expression that is evaluated in a specified context and returns a value.
* The context of use of the expression must specify the context in which the
* expression is evaluated, and how the result of the expression is used.
*/
EXPRESSION,
/**
* Optional Extension Element - found in all resources.
*/
EXTENSION,
/**
* A human's name with the ability to identify parts and usage.
*/
HUMANNAME,
/**
* An identifier - identifies some entity uniquely and unambiguously. Typically
* this is used for business identifiers.
*/
IDENTIFIER,
/**
* The marketing status describes the date when a medicinal product is actually
* put on the market or the date as of which it is no longer available.
*/
MARKETINGSTATUS,
/**
* The metadata about a resource. This is content in the resource that is
* maintained by the infrastructure. Changes to the content might not always be
* associated with version changes to the resource.
*/
META,
/**
* An amount of economic utility in some recognized currency.
*/
MONEY,
/**
* null
*/
MONEYQUANTITY,
/**
* A human-readable summary of the resource conveying the essential clinical and
* business information for the resource.
*/
NARRATIVE,
/**
* The parameters to the module. This collection specifies both the input and
* output parameters. Input parameters are provided by the caller as part of the
* $evaluate operation. Output parameters are included in the GuidanceResponse.
*/
PARAMETERDEFINITION,
/**
* A time period defined by a start and end date and optionally time.
*/
PERIOD,
/**
* A populatioof people with some set of grouping criteria.
*/
POPULATION,
/**
* The marketing status describes the date when a medicinal product is actually
* put on the market or the date as of which it is no longer available.
*/
PRODCHARACTERISTIC,
/**
* The shelf-life and storage information for a medicinal product item or
* container can be described using this class.
*/
PRODUCTSHELFLIFE,
/**
* A measured amount (or an amount that can potentially be measured). Note that
* measured amounts include amounts that are not precisely quantified, including
* amounts involving arbitrary units and floating currencies.
*/
QUANTITY,
/**
* A set of ordered Quantities defined by a low and high limit.
*/
RANGE,
/**
* A relationship of two Quantity values - expressed as a numerator and a
* denominator.
*/
RATIO,
/**
* A reference from one resource to another.
*/
REFERENCE,
/**
* Related artifacts such as additional documentation, justification, or
* bibliographic references.
*/
RELATEDARTIFACT,
/**
* A series of measurements taken by a device, with upper and lower limits.
* There may be more than one dimension in the data.
*/
SAMPLEDDATA,
/**
* A signature along with supporting context. The signature may be a digital
* signature that is cryptographic in nature, or some other signature acceptable
* to the domain. This other signature may be as simple as a graphical image
* representing a hand-written signature, or a signature ceremony Different
* signature approaches have different utilities.
*/
SIGNATURE,
/**
* null
*/
SIMPLEQUANTITY,
/**
* Chemical substances are a single substance type whose primary defining
* element is the molecular structure. Chemical substances shall be defined on
* the basis of their complete covalent molecular structure; the presence of a
* salt (counter-ion) and/or solvates (water, alcohols) is also captured.
* Purity, grade, physical form or particle size are not taken into account in
* the definition of a chemical substance or in the assignment of a Substance
* ID.
*/
SUBSTANCEAMOUNT,
/**
* Specifies an event that may occur multiple times. Timing schedules are used
* to record when things are planned, expected or requested to occur. The most
* common usage is in dosage instructions for medications. They are also used
* when planning care of various kinds, and may be used for reporting the
* schedule to which past regular activities were carried out.
*/
TIMING,
/**
* A description of a triggering event. Triggering events can be named events,
* data events, or periodic, as determined by the type element.
*/
TRIGGERDEFINITION,
/**
* Specifies clinical/business/etc. metadata that can be used to retrieve, index
* and/or categorize an artifact. This metadata can either be specific to the
* applicable population (e.g., age category, DRG) or the specific context of
* care (e.g., venue, care setting, provider of care).
*/
USAGECONTEXT,
/**
* A stream of bytes
*/
BASE64BINARY,
/**
* Value of "true" or "false"
*/
BOOLEAN,
/**
* A URI that is a reference to a canonical URL on a FHIR resource
*/
CANONICAL,
/**
* A string which has at least one character and no leading or trailing
* whitespace and where there is no whitespace other than single spaces in the
* contents
*/
CODE,
/**
* A date or partial date (e.g. just year or year + month). There is no time
* zone. The format is a union of the schema types gYear, gYearMonth and date.
* Dates SHALL be valid dates.
*/
DATE,
/**
* A date, date-time or partial date (e.g. just year or year + month). If hours
* and minutes are specified, a time zone SHALL be populated. The format is a
* union of the schema types gYear, gYearMonth, date and dateTime. Seconds must
* be provided due to schema type constraints but may be zero-filled and may be
* ignored. Dates SHALL be valid dates.
*/
DATETIME,
/**
* A rational number with implicit precision
*/
DECIMAL,
/**
* Any combination of letters, numerals, "-" and ".", with a length limit of 64
* characters. (This might be an integer, an unprefixed OID, UUID or any other
* identifier pattern that meets these constraints.) Ids are case-insensitive.
*/
ID,
/**
* An instant in time - known at least to the second
*/
INSTANT,
/**
* A whole number
*/
INTEGER,
/**
* A string that may contain Github Flavored Markdown syntax for optional
* processing by a mark down presentation engine
*/
MARKDOWN,
/**
* An OID represented as a URI
*/
OID,
/**
* An integer with a value that is positive (e.g. >0)
*/
POSITIVEINT,
/**
* A sequence of Unicode characters
*/
STRING,
/**
* A time during the day, with no date specified
*/
TIME,
/**
* An integer with a value that is not negative (e.g. >= 0)
*/
UNSIGNEDINT,
/**
* String of characters used to identify a name or a resource
*/
URI,
/**
* A URI that is a literal reference
*/
URL,
/**
* A UUID, represented as a URI
*/
UUID,
/**
* XHTML format, as defined by W3C, but restricted usage (mainly, no active
* content)
*/
XHTML,
/**
* A financial tool for tracking value accrued for a particular purpose. In the
* healthcare field, used to track charges for a patient, cost centers, etc.
*/
ACCOUNT,
/**
* This resource allows for the definition of some activity to be performed,
* independent of a particular patient, practitioner, or other performance
* context.
*/
ACTIVITYDEFINITION,
/**
* Actual or potential/avoided event causing unintended physical injury
* resulting from or contributed to by medical care, a research study or other
* healthcare setting factors that requires additional monitoring, treatment, or
* hospitalization, or that results in death.
*/
ADVERSEEVENT,
/**
* Risk of harmful or undesirable, physiological response which is unique to an
* individual and associated with exposure to a substance.
*/
ALLERGYINTOLERANCE,
/**
* A booking of a healthcare event among patient(s), practitioner(s), related
* person(s) and/or device(s) for a specific date/time. This may result in one
* or more Encounter(s).
*/
APPOINTMENT,
/**
* A reply to an appointment request for a patient and/or practitioner(s), such
* as a confirmation or rejection.
*/
APPOINTMENTRESPONSE,
/**
* A record of an event made for purposes of maintaining a security log. Typical
* uses include detection of intrusion attempts and monitoring for inappropriate
* usage.
*/
AUDITEVENT,
/**
* Basic is used for handling concepts not yet defined in FHIR, narrative-only
* resources that don't map to an existing resource, and custom resources not
* appropriate for inclusion in the FHIR specification.
*/
BASIC,
/**
* A resource that represents the data of a single raw artifact as digital
* content accessible in its native format. A Binary resource can contain any
* content, whether text, image, pdf, zip archive, etc.
*/
BINARY,
/**
* A material substance originating from a biological entity intended to be
* transplanted or infused into another (possibly the same) biological entity.
*/
BIOLOGICALLYDERIVEDPRODUCT,
/**
* Record details about an anatomical structure. This resource may be used when
* a coded concept does not provide the necessary detail needed for the use
* case.
*/
BODYSTRUCTURE,
/**
* A container for a collection of resources.
*/
BUNDLE,
/**
* A Capability Statement documents a set of capabilities (behaviors) of a FHIR
* Server for a particular version of FHIR that may be used as a statement of
* actual server functionality or a statement of required or desired server
* implementation.
*/
CAPABILITYSTATEMENT,
/**
* Describes the intention of how one or more practitioners intend to deliver
* care for a particular patient, group or community for a period of time,
* possibly limited to care for a specific condition or set of conditions.
*/
CAREPLAN,
/**
* The Care Team includes all the people and organizations who plan to
* participate in the coordination and delivery of care for a patient.
*/
CARETEAM,
/**
* Catalog entries are wrappers that contextualize items included in a catalog.
*/
CATALOGENTRY,
/**
* The resource ChargeItem describes the provision of healthcare provider
* products for a certain patient, therefore referring not only to the product,
* but containing in addition details of the provision, like date, time, amounts
* and participating organizations and persons. Main Usage of the ChargeItem is
* to enable the billing process and internal cost allocation.
*/
CHARGEITEM,
/**
* The ChargeItemDefinition resource provides the properties that apply to the
* (billing) codes necessary to calculate costs and prices. The properties may
* differ largely depending on type and realm, therefore this resource gives
* only a rough structure and requires profiling for each type of billing code
* system.
*/
CHARGEITEMDEFINITION,
/**
* A provider issued list of professional services and products which have been
* provided, or are to be provided, to a patient which is sent to an insurer for
* reimbursement.
*/
CLAIM,
/**
* This resource provides the adjudication details from the processing of a
* Claim resource.
*/
CLAIMRESPONSE,
/**
* A record of a clinical assessment performed to determine what problem(s) may
* affect the patient and before planning the treatments or management
* strategies that are best to manage a patient's condition. Assessments are
* often 1:1 with a clinical consultation / encounter, but this varies greatly
* depending on the clinical workflow. This resource is called
* "ClinicalImpression" rather than "ClinicalAssessment" to avoid confusion with
* the recording of assessment tools such as Apgar score.
*/
CLINICALIMPRESSION,
/**
* The CodeSystem resource is used to declare the existence of and describe a
* code system or code system supplement and its key properties, and optionally
* define a part or all of its content.
*/
CODESYSTEM,
/**
* An occurrence of information being transmitted; e.g. an alert that was sent
* to a responsible provider, a public health agency that was notified about a
* reportable condition.
*/
COMMUNICATION,
/**
* A request to convey information; e.g. the CDS system proposes that an alert
* be sent to a responsible provider, the CDS system proposes that the public
* health agency be notified about a reportable condition.
*/
COMMUNICATIONREQUEST,
/**
* A compartment definition that defines how resources are accessed on a server.
*/
COMPARTMENTDEFINITION,
/**
* A set of healthcare-related information that is assembled together into a
* single logical package that provides a single coherent statement of meaning,
* establishes its own context and that has clinical attestation with regard to
* who is making the statement. A Composition defines the structure and
* narrative content necessary for a document. However, a Composition alone does
* not constitute a document. Rather, the Composition must be the first entry in
* a Bundle where Bundle.type=document, and any other resources referenced from
* Composition must be included as subsequent entries in the Bundle (for example
* Patient, Practitioner, Encounter, etc.).
*/
COMPOSITION,
/**
* A statement of relationships from one set of concepts to one or more other
* concepts - either concepts in code systems, or data element/data element
* concepts, or classes in class models.
*/
CONCEPTMAP,
/**
* A clinical condition, problem, diagnosis, or other event, situation, issue,
* or clinical concept that has risen to a level of concern.
*/
CONDITION,
/**
* A record of a healthcare consumer’s choices, which permits or denies
* identified recipient(s) or recipient role(s) to perform one or more actions
* within a given policy context, for specific purposes and periods of time.
*/
CONSENT,
/**
* Legally enforceable, formally recorded unilateral or bilateral directive
* i.e., a policy or agreement.
*/
CONTRACT,
/**
* Financial instrument which may be used to reimburse or pay for health care
* products and services. Includes both insurance and self-payment.
*/
COVERAGE,
/**
* The CoverageEligibilityRequest provides patient and insurance coverage
* information to an insurer for them to respond, in the form of an
* CoverageEligibilityResponse, with information regarding whether the stated
* coverage is valid and in-force and optionally to provide the insurance
* details of the policy.
*/
COVERAGEELIGIBILITYREQUEST,
/**
* This resource provides eligibility and plan details from the processing of an
* CoverageEligibilityRequest resource.
*/
COVERAGEELIGIBILITYRESPONSE,
/**
* Indicates an actual or potential clinical issue with or between one or more
* active or proposed clinical actions for a patient; e.g. Drug-drug
* interaction, Ineffective treatment frequency, Procedure-condition conflict,
* etc.
*/
DETECTEDISSUE,
/**
* A type of a manufactured item that is used in the provision of healthcare
* without being substantially changed through that activity. The device may be
* a medical or non-medical device.
*/
DEVICE,
/**
* The characteristics, operational status and capabilities of a medical-related
* component of a medical device.
*/
DEVICEDEFINITION,
/**
* Describes a measurement, calculation or setting capability of a medical
* device.
*/
DEVICEMETRIC,
/**
* Represents a request for a patient to employ a medical device. The device may
* be an implantable device, or an external assistive device, such as a walker.
*/
DEVICEREQUEST,
/**
* A record of a device being used by a patient where the record is the result
* of a report from the patient or another clinician.
*/
DEVICEUSESTATEMENT,
/**
* The findings and interpretation of diagnostic tests performed on patients,
* groups of patients, devices, and locations, and/or specimens derived from
* these. The report includes clinical context such as requesting and provider
* information, and some mix of atomic results, images, textual and coded
* interpretations, and formatted representation of diagnostic reports.
*/
DIAGNOSTICREPORT,
/**
* A collection of documents compiled for a purpose together with metadata that
* applies to the collection.
*/
DOCUMENTMANIFEST,
/**
* A reference to a document of any kind for any purpose. Provides metadata
* about the document so that the document can be discovered and managed. The
* scope of a document is any seralized object with a mime-type, so includes
* formal patient centric documents (CDA), cliical notes, scanned paper, and
* non-patient specific documents like policy text.
*/
DOCUMENTREFERENCE,
/**
* A resource that includes narrative, extensions, and contained resources.
*/
DOMAINRESOURCE,
/**
* The EffectEvidenceSynthesis resource describes the difference in an outcome
* between exposures states in a population where the effect estimate is derived
* from a combination of research studies.
*/
EFFECTEVIDENCESYNTHESIS,
/**
* An interaction between a patient and healthcare provider(s) for the purpose
* of providing healthcare service(s) or assessing the health status of a
* patient.
*/
ENCOUNTER,
/**
* The technical details of an endpoint that can be used for electronic
* services, such as for web services providing XDS.b or a REST endpoint for
* another FHIR server. This may include any security context information.
*/
ENDPOINT,
/**
* This resource provides the insurance enrollment details to the insurer
* regarding a specified coverage.
*/
ENROLLMENTREQUEST,
/**
* This resource provides enrollment and plan details from the processing of an
* EnrollmentRequest resource.
*/
ENROLLMENTRESPONSE,
/**
* An association between a patient and an organization / healthcare provider(s)
* during which time encounters may occur. The managing organization assumes a
* level of responsibility for the patient during this time.
*/
EPISODEOFCARE,
/**
* The EventDefinition resource provides a reusable description of when a
* particular event can occur.
*/
EVENTDEFINITION,
/**
* The Evidence resource describes the conditional state (population and any
* exposures being compared within the population) and outcome (if specified)
* that the knowledge (evidence, assertion, recommendation) is about.
*/
EVIDENCE,
/**
* The EvidenceVariable resource describes a "PICO" element that knowledge
* (evidence, assertion, recommendation) is about.
*/
EVIDENCEVARIABLE,
/**
* Example of workflow instance.
*/
EXAMPLESCENARIO,
/**
* This resource provides: the claim details; adjudication details from the
* processing of a Claim; and optionally account balance information, for
* informing the subscriber of the benefits provided.
*/
EXPLANATIONOFBENEFIT,
/**
* Significant health conditions for a person related to the patient relevant in
* the context of care for the patient.
*/
FAMILYMEMBERHISTORY,
/**
* Prospective warnings of potential issues when providing care to the patient.
*/
FLAG,
/**
* Describes the intended objective(s) for a patient, group or organization
* care, for example, weight loss, restoring an activity of daily living,
* obtaining herd immunity via immunization, meeting a process improvement
* objective, etc.
*/
GOAL,
/**
* A formal computable definition of a graph of resources - that is, a coherent
* set of resources that form a graph by following references. The Graph
* Definition resource defines a set and makes rules about the set.
*/
GRAPHDEFINITION,
/**
* Represents a defined collection of entities that may be discussed or acted
* upon collectively but which are not expected to act collectively, and are not
* formally or legally recognized; i.e. a collection of entities that isn't an
* Organization.
*/
GROUP,
/**
* A guidance response is the formal response to a guidance request, including
* any output parameters returned by the evaluation, as well as the description
* of any proposed actions to be taken.
*/
GUIDANCERESPONSE,
/**
* The details of a healthcare service available at a location.
*/
HEALTHCARESERVICE,
/**
* Representation of the content produced in a DICOM imaging study. A study
* comprises a set of series, each of which includes a set of Service-Object
* Pair Instances (SOP Instances - images or other data) acquired or produced in
* a common context. A series is of only one modality (e.g. X-ray, CT, MR,
* ultrasound), but a study may have multiple series of different modalities.
*/
IMAGINGSTUDY,
/**
* Describes the event of a patient being administered a vaccine or a record of
* an immunization as reported by a patient, a clinician or another party.
*/
IMMUNIZATION,
/**
* Describes a comparison of an immunization event against published
* recommendations to determine if the administration is "valid" in relation to
* those recommendations.
*/
IMMUNIZATIONEVALUATION,
/**
* A patient's point-in-time set of recommendations (i.e. forecasting) according
* to a published schedule with optional supporting justification.
*/
IMMUNIZATIONRECOMMENDATION,
/**
* A set of rules of how a particular interoperability or standards problem is
* solved - typically through the use of FHIR resources. This resource is used
* to gather all the parts of an implementation guide into a logical whole and
* to publish a computable definition of all the parts.
*/
IMPLEMENTATIONGUIDE,
/**
* Details of a Health Insurance product/plan provided by an organization.
*/
INSURANCEPLAN,
/**
* Invoice containing collected ChargeItems from an Account with calculated
* individual and total price for Billing purpose.
*/
INVOICE,
/**
* The Library resource is a general-purpose container for knowledge asset
* definitions. It can be used to describe and expose existing knowledge assets
* such as logic libraries and information model descriptions, as well as to
* describe a collection of knowledge assets.
*/
LIBRARY,
/**
* Identifies two or more records (resource instances) that refer to the same
* real-world "occurrence".
*/
LINKAGE,
/**
* A list is a curated collection of resources.
*/
LIST,
/**
* Details and position information for a physical place where services are
* provided and resources and participants may be stored, found, contained, or
* accommodated.
*/
LOCATION,
/**
* The Measure resource provides the definition of a quality measure.
*/
MEASURE,
/**
* The MeasureReport resource contains the results of the calculation of a
* measure; and optionally a reference to the resources involved in that
* calculation.
*/
MEASUREREPORT,
/**
* A photo, video, or audio recording acquired or used in healthcare. The actual
* content may be inline or provided by direct reference.
*/
MEDIA,
/**
* This resource is primarily used for the identification and definition of a
* medication for the purposes of prescribing, dispensing, and administering a
* medication as well as for making statements about medication use.
*/
MEDICATION,
/**
* Describes the event of a patient consuming or otherwise being administered a
* medication. This may be as simple as swallowing a tablet or it may be a long
* running infusion. Related resources tie this event to the authorizing
* prescription, and the specific encounter between patient and health care
* practitioner.
*/
MEDICATIONADMINISTRATION,
/**
* Indicates that a medication product is to be or has been dispensed for a
* named person/patient. This includes a description of the medication product
* (supply) provided and the instructions for administering the medication. The
* medication dispense is the result of a pharmacy system responding to a
* medication order.
*/
MEDICATIONDISPENSE,
/**
* Information about a medication that is used to support knowledge.
*/
MEDICATIONKNOWLEDGE,
/**
* An order or request for both supply of the medication and the instructions
* for administration of the medication to a patient. The resource is called
* "MedicationRequest" rather than "MedicationPrescription" or "MedicationOrder"
* to generalize the use across inpatient and outpatient settings, including
* care plans, etc., and to harmonize with workflow patterns.
*/
MEDICATIONREQUEST,
/**
* A record of a medication that is being consumed by a patient. A
* MedicationStatement may indicate that the patient may be taking the
* medication now or has taken the medication in the past or will be taking the
* medication in the future. The source of this information can be the patient,
* significant other (such as a family member or spouse), or a clinician. A
* common scenario where this information is captured is during the history
* taking process during a patient visit or stay. The medication information may
* come from sources such as the patient's memory, from a prescription bottle,
* or from a list of medications the patient, clinician or other party
* maintains.
*
* The primary difference between a medication statement and a medication
* administration is that the medication administration has complete
* administration information and is based on actual administration information
* from the person who administered the medication. A medication statement is
* often, if not always, less specific. There is no required date/time when the
* medication was administered, in fact we only know that a source has reported
* the patient is taking this medication, where details such as time, quantity,
* or rate or even medication product may be incomplete or missing or less
* precise. As stated earlier, the medication statement information may come
* from the patient's memory, from a prescription bottle or from a list of
* medications the patient, clinician or other party maintains. Medication
* administration is more formal and is not missing detailed information.
*/
MEDICATIONSTATEMENT,
/**
* Detailed definition of a medicinal product, typically for uses other than
* direct patient care (e.g. regulatory use).
*/
MEDICINALPRODUCT,
/**
* The regulatory authorization of a medicinal product.
*/
MEDICINALPRODUCTAUTHORIZATION,
/**
* The clinical particulars - indications, contraindications etc. of a medicinal
* product, including for regulatory purposes.
*/
MEDICINALPRODUCTCONTRAINDICATION,
/**
* Indication for the Medicinal Product.
*/
MEDICINALPRODUCTINDICATION,
/**
* An ingredient of a manufactured item or pharmaceutical product.
*/
MEDICINALPRODUCTINGREDIENT,
/**
* The interactions of the medicinal product with other medicinal products, or
* other forms of interactions.
*/
MEDICINALPRODUCTINTERACTION,
/**
* The manufactured item as contained in the packaged medicinal product.
*/
MEDICINALPRODUCTMANUFACTURED,
/**
* A medicinal product in a container or package.
*/
MEDICINALPRODUCTPACKAGED,
/**
* A pharmaceutical product described in terms of its composition and dose form.
*/
MEDICINALPRODUCTPHARMACEUTICAL,
/**
* Describe the undesirable effects of the medicinal product.
*/
MEDICINALPRODUCTUNDESIRABLEEFFECT,
/**
* Defines the characteristics of a message that can be shared between systems,
* including the type of event that initiates the message, the content to be
* transmitted and what response(s), if any, are permitted.
*/
MESSAGEDEFINITION,
/**
* The header for a message exchange that is either requesting or responding to
* an action. The reference(s) that are the subject of the action as well as
* other information related to the action are typically transmitted in a bundle
* in which the MessageHeader resource instance is the first resource in the
* bundle.
*/
MESSAGEHEADER,
/**
* Raw data describing a biological sequence.
*/
MOLECULARSEQUENCE,
/**
* A curated namespace that issues unique symbols within that namespace for the
* identification of concepts, people, devices, etc. Represents a "System" used
* within the Identifier and Coding data types.
*/
NAMINGSYSTEM,
/**
* A request to supply a diet, formula feeding (enteral) or oral nutritional
* supplement to a patient/resident.
*/
NUTRITIONORDER,
/**
* Measurements and simple assertions made about a patient, device or other
* subject.
*/
OBSERVATION,
/**
* Set of definitional characteristics for a kind of observation or measurement
* produced or consumed by an orderable health care service.
*/
OBSERVATIONDEFINITION,
/**
* A formal computable definition of an operation (on the RESTful interface) or
* a named query (using the search interaction).
*/
OPERATIONDEFINITION,
/**
* A collection of error, warning, or information messages that result from a
* system action.
*/
OPERATIONOUTCOME,
/**
* A formally or informally recognized grouping of people or organizations
* formed for the purpose of achieving some form of collective action. Includes
* companies, institutions, corporations, departments, community groups,
* healthcare practice groups, payer/insurer, etc.
*/
ORGANIZATION,
/**
* Defines an affiliation/assotiation/relationship between 2 distinct
* oganizations, that is not a part-of relationship/sub-division relationship.
*/
ORGANIZATIONAFFILIATION,
/**
* This resource is a non-persisted resource used to pass information into and
* back from an [operation](operations.html). It has no other use, and there is
* no RESTful endpoint associated with it.
*/
PARAMETERS,
/**
* Demographics and other administrative information about an individual or
* animal receiving care or other health-related services.
*/
PATIENT,
/**
* This resource provides the status of the payment for goods and services
* rendered, and the request and response resource references.
*/
PAYMENTNOTICE,
/**
* This resource provides the details including amount of a payment and
* allocates the payment items being paid.
*/
PAYMENTRECONCILIATION,
/**
* Demographics and administrative information about a person independent of a
* specific health-related context.
*/
PERSON,
/**
* This resource allows for the definition of various types of plans as a
* sharable, consumable, and executable artifact. The resource is general enough
* to support the description of a broad range of clinical artifacts such as
* clinical decision support rules, order sets and protocols.
*/
PLANDEFINITION,
/**
* A person who is directly or indirectly involved in the provisioning of
* healthcare.
*/
PRACTITIONER,
/**
* A specific set of Roles/Locations/specialties/services that a practitioner
* may perform at an organization for a period of time.
*/
PRACTITIONERROLE,
/**
* An action that is or was performed on or for a patient. This can be a
* physical intervention like an operation, or less invasive like long term
* services, counseling, or hypnotherapy.
*/
PROCEDURE,
/**
* Provenance of a resource is a record that describes entities and processes
* involved in producing and delivering or otherwise influencing that resource.
* Provenance provides a critical foundation for assessing authenticity,
* enabling trust, and allowing reproducibility. Provenance assertions are a
* form of contextual metadata and can themselves become important records with
* their own provenance. Provenance statement indicates clinical significance in
* terms of confidence in authenticity, reliability, and trustworthiness,
* integrity, and stage in lifecycle (e.g. Document Completion - has the
* artifact been legally authenticated), all of which may impact security,
* privacy, and trust policies.
*/
PROVENANCE,
/**
* A structured set of questions intended to guide the collection of answers
* from end-users. Questionnaires provide detailed control over order,
* presentation, phraseology and grouping to allow coherent, consistent data
* collection.
*/
QUESTIONNAIRE,
/**
* A structured set of questions and their answers. The questions are ordered
* and grouped into coherent subsets, corresponding to the structure of the
* grouping of the questionnaire being responded to.
*/
QUESTIONNAIRERESPONSE,
/**
* Information about a person that is involved in the care for a patient, but
* who is not the target of healthcare, nor has a formal responsibility in the
* care process.
*/
RELATEDPERSON,
/**
* A group of related requests that can be used to capture intended activities
* that have inter-dependencies such as "give this medication after that one".
*/
REQUESTGROUP,
/**
* The ResearchDefinition resource describes the conditional state (population
* and any exposures being compared within the population) and outcome (if
* specified) that the knowledge (evidence, assertion, recommendation) is about.
*/
RESEARCHDEFINITION,
/**
* The ResearchElementDefinition resource describes a "PICO" element that
* knowledge (evidence, assertion, recommendation) is about.
*/
RESEARCHELEMENTDEFINITION,
/**
* A process where a researcher or organization plans and then executes a series
* of steps intended to increase the field of healthcare-related knowledge. This
* includes studies of safety, efficacy, comparative effectiveness and other
* information about medications, devices, therapies and other interventional
* and investigative techniques. A ResearchStudy involves the gathering of
* information about human or animal subjects.
*/
RESEARCHSTUDY,
/**
* A physical entity which is the primary unit of operational and/or
* administrative interest in a study.
*/
RESEARCHSUBJECT,
/**
* This is the base resource type for everything.
*/
RESOURCE,
/**
* An assessment of the likely outcome(s) for a patient or other subject as well
* as the likelihood of each outcome.
*/
RISKASSESSMENT,
/**
* The RiskEvidenceSynthesis resource describes the likelihood of an outcome in
* a population plus exposure state where the risk estimate is derived from a
* combination of research studies.
*/
RISKEVIDENCESYNTHESIS,
/**
* A container for slots of time that may be available for booking appointments.
*/
SCHEDULE,
/**
* A search parameter that defines a named search item that can be used to
* search/filter on a resource.
*/
SEARCHPARAMETER,
/**
* A record of a request for service such as diagnostic investigations,
* treatments, or operations to be performed.
*/
SERVICEREQUEST,
/**
* A slot of time on a schedule that may be available for booking appointments.
*/
SLOT,
/**
* A sample to be used for analysis.
*/
SPECIMEN,
/**
* A kind of specimen with associated set of requirements.
*/
SPECIMENDEFINITION,
/**
* A definition of a FHIR structure. This resource is used to describe the
* underlying resources, data types defined in FHIR, and also for describing
* extensions and constraints on resources and data types.
*/
STRUCTUREDEFINITION,
/**
* A Map of relationships between 2 structures that can be used to transform
* data.
*/
STRUCTUREMAP,
/**
* The subscription resource is used to define a push-based subscription from a
* server to another system. Once a subscription is registered with the server,
* the server checks every resource that is created or updated, and if the
* resource matches the given criteria, it sends a message on the defined
* "channel" so that another system can take an appropriate action.
*/
SUBSCRIPTION,
/**
* A homogeneous material with a definite composition.
*/
SUBSTANCE,
/**
* Nucleic acids are defined by three distinct elements: the base, sugar and
* linkage. Individual substance/moiety IDs will be created for each of these
* elements. The nucleotide sequence will be always entered in the 5’-3’
* direction.
*/
SUBSTANCENUCLEICACID,
/**
* Todo.
*/
SUBSTANCEPOLYMER,
/**
* A SubstanceProtein is defined as a single unit of a linear amino acid
* sequence, or a combination of subunits that are either covalently linked or
* have a defined invariant stoichiometric relationship. This includes all
* synthetic, recombinant and purified SubstanceProteins of defined sequence,
* whether the use is therapeutic or prophylactic. This set of elements will be
* used to describe albumins, coagulation factors, cytokines, growth factors,
* peptide/SubstanceProtein hormones, enzymes, toxins, toxoids, recombinant
* vaccines, and immunomodulators.
*/
SUBSTANCEPROTEIN,
/**
* Todo.
*/
SUBSTANCEREFERENCEINFORMATION,
/**
* Source material shall capture information on the taxonomic and anatomical
* origins as well as the fraction of a material that can result in or can be
* modified to form a substance. This set of data elements shall be used to
* define polymer substances isolated from biological matrices. Taxonomic and
* anatomical origins shall be described using a controlled vocabulary as
* required. This information is captured for naturally derived polymers ( .
* starch) and structurally diverse substances. For Organisms belonging to the
* Kingdom Plantae the Substance level defines the fresh material of a single
* species or infraspecies, the Herbal Drug and the Herbal preparation. For
* Herbal preparations, the fraction information will be captured at the
* Substance information level and additional information for herbal extracts
* will be captured at the Specified Substance Group 1 information level. See
* for further explanation the Substance Class: Structurally Diverse and the
* herbal annex.
*/
SUBSTANCESOURCEMATERIAL,
/**
* The detailed description of a substance, typically at a level beyond what is
* used for prescribing.
*/
SUBSTANCESPECIFICATION,
/**
* Record of delivery of what is supplied.
*/
SUPPLYDELIVERY,
/**
* A record of a request for a medication, substance or device used in the
* healthcare setting.
*/
SUPPLYREQUEST,
/**
* A task to be performed.
*/
TASK,
/**
* A Terminology Capabilities documents a set of capabilities (behaviors) of a
* FHIR Server that may be used as a statement of actual server functionality or
* a statement of required or desired server implementation.
*/
TERMINOLOGYCAPABILITIES,
/**
* A summary of information based on the results of executing a TestScript.
*/
TESTREPORT,
/**
* A structured set of tests against a FHIR server or client implementation to
* determine compliance against the FHIR specification.
*/
TESTSCRIPT,
/**
* A ValueSet resource instance specifies a set of codes drawn from one or more
* code systems, intended for use in a particular context. Value sets link
* between [[[CodeSystem]]] definitions and their use in [coded
* elements](terminologies.html).
*/
VALUESET,
/**
* Describes validation requirements, source(s), status and dates for one or
* more elements.
*/
VERIFICATIONRESULT,
/**
* An authorization for the provision of glasses and/or contact lenses to a
* patient.
*/
VISIONPRESCRIPTION,
/**
* A place holder that means any kind of data type
*/
TYPE,
/**
* A place holder that means any kind of resource
*/
ANY,
/**
* added to help the parsers
*/
NULL;
public static FHIRAllTypes fromCode(String codeString) throws FHIRException {
if (codeString == null || "".equals(codeString))
return null;
if ("Address".equals(codeString))
return ADDRESS;
if ("Age".equals(codeString))
return AGE;
if ("Annotation".equals(codeString))
return ANNOTATION;
if ("Attachment".equals(codeString))
return ATTACHMENT;
if ("BackboneElement".equals(codeString))
return BACKBONEELEMENT;
if ("CodeableConcept".equals(codeString))
return CODEABLECONCEPT;
if ("Coding".equals(codeString))
return CODING;
if ("ContactDetail".equals(codeString))
return CONTACTDETAIL;
if ("ContactPoint".equals(codeString))
return CONTACTPOINT;
if ("Contributor".equals(codeString))
return CONTRIBUTOR;
if ("Count".equals(codeString))
return COUNT;
if ("DataRequirement".equals(codeString))
return DATAREQUIREMENT;
if ("Distance".equals(codeString))
return DISTANCE;
if ("Dosage".equals(codeString))
return DOSAGE;
if ("Duration".equals(codeString))
return DURATION;
if ("Element".equals(codeString))
return ELEMENT;
if ("ElementDefinition".equals(codeString))
return ELEMENTDEFINITION;
if ("Expression".equals(codeString))
return EXPRESSION;
if ("Extension".equals(codeString))
return EXTENSION;
if ("HumanName".equals(codeString))
return HUMANNAME;
if ("Identifier".equals(codeString))
return IDENTIFIER;
if ("MarketingStatus".equals(codeString))
return MARKETINGSTATUS;
if ("Meta".equals(codeString))
return META;
if ("Money".equals(codeString))
return MONEY;
if ("MoneyQuantity".equals(codeString))
return MONEYQUANTITY;
if ("Narrative".equals(codeString))
return NARRATIVE;
if ("ParameterDefinition".equals(codeString))
return PARAMETERDEFINITION;
if ("Period".equals(codeString))
return PERIOD;
if ("Population".equals(codeString))
return POPULATION;
if ("ProdCharacteristic".equals(codeString))
return PRODCHARACTERISTIC;
if ("ProductShelfLife".equals(codeString))
return PRODUCTSHELFLIFE;
if ("Quantity".equals(codeString))
return QUANTITY;
if ("Range".equals(codeString))
return RANGE;
if ("Ratio".equals(codeString))
return RATIO;
if ("Reference".equals(codeString))
return REFERENCE;
if ("RelatedArtifact".equals(codeString))
return RELATEDARTIFACT;
if ("SampledData".equals(codeString))
return SAMPLEDDATA;
if ("Signature".equals(codeString))
return SIGNATURE;
if ("SimpleQuantity".equals(codeString))
return SIMPLEQUANTITY;
if ("SubstanceAmount".equals(codeString))
return SUBSTANCEAMOUNT;
if ("Timing".equals(codeString))
return TIMING;
if ("TriggerDefinition".equals(codeString))
return TRIGGERDEFINITION;
if ("UsageContext".equals(codeString))
return USAGECONTEXT;
if ("base64Binary".equals(codeString))
return BASE64BINARY;
if ("boolean".equals(codeString))
return BOOLEAN;
if ("canonical".equals(codeString))
return CANONICAL;
if ("code".equals(codeString))
return CODE;
if ("date".equals(codeString))
return DATE;
if ("dateTime".equals(codeString))
return DATETIME;
if ("decimal".equals(codeString))
return DECIMAL;
if ("id".equals(codeString))
return ID;
if ("instant".equals(codeString))
return INSTANT;
if ("integer".equals(codeString))
return INTEGER;
if ("markdown".equals(codeString))
return MARKDOWN;
if ("oid".equals(codeString))
return OID;
if ("positiveInt".equals(codeString))
return POSITIVEINT;
if ("string".equals(codeString))
return STRING;
if ("time".equals(codeString))
return TIME;
if ("unsignedInt".equals(codeString))
return UNSIGNEDINT;
if ("uri".equals(codeString))
return URI;
if ("url".equals(codeString))
return URL;
if ("uuid".equals(codeString))
return UUID;
if ("xhtml".equals(codeString))
return XHTML;
if ("Account".equals(codeString))
return ACCOUNT;
if ("ActivityDefinition".equals(codeString))
return ACTIVITYDEFINITION;
if ("AdverseEvent".equals(codeString))
return ADVERSEEVENT;
if ("AllergyIntolerance".equals(codeString))
return ALLERGYINTOLERANCE;
if ("Appointment".equals(codeString))
return APPOINTMENT;
if ("AppointmentResponse".equals(codeString))
return APPOINTMENTRESPONSE;
if ("AuditEvent".equals(codeString))
return AUDITEVENT;
if ("Basic".equals(codeString))
return BASIC;
if ("Binary".equals(codeString))
return BINARY;
if ("BiologicallyDerivedProduct".equals(codeString))
return BIOLOGICALLYDERIVEDPRODUCT;
if ("BodyStructure".equals(codeString))
return BODYSTRUCTURE;
if ("Bundle".equals(codeString))
return BUNDLE;
if ("CapabilityStatement".equals(codeString))
return CAPABILITYSTATEMENT;
if ("CarePlan".equals(codeString))
return CAREPLAN;
if ("CareTeam".equals(codeString))
return CARETEAM;
if ("CatalogEntry".equals(codeString))
return CATALOGENTRY;
if ("ChargeItem".equals(codeString))
return CHARGEITEM;
if ("ChargeItemDefinition".equals(codeString))
return CHARGEITEMDEFINITION;
if ("Claim".equals(codeString))
return CLAIM;
if ("ClaimResponse".equals(codeString))
return CLAIMRESPONSE;
if ("ClinicalImpression".equals(codeString))
return CLINICALIMPRESSION;
if ("CodeSystem".equals(codeString))
return CODESYSTEM;
if ("Communication".equals(codeString))
return COMMUNICATION;
if ("CommunicationRequest".equals(codeString))
return COMMUNICATIONREQUEST;
if ("CompartmentDefinition".equals(codeString))
return COMPARTMENTDEFINITION;
if ("Composition".equals(codeString))
return COMPOSITION;
if ("ConceptMap".equals(codeString))
return CONCEPTMAP;
if ("Condition".equals(codeString))
return CONDITION;
if ("Consent".equals(codeString))
return CONSENT;
if ("Contract".equals(codeString))
return CONTRACT;
if ("Coverage".equals(codeString))
return COVERAGE;
if ("CoverageEligibilityRequest".equals(codeString))
return COVERAGEELIGIBILITYREQUEST;
if ("CoverageEligibilityResponse".equals(codeString))
return COVERAGEELIGIBILITYRESPONSE;
if ("DetectedIssue".equals(codeString))
return DETECTEDISSUE;
if ("Device".equals(codeString))
return DEVICE;
if ("DeviceDefinition".equals(codeString))
return DEVICEDEFINITION;
if ("DeviceMetric".equals(codeString))
return DEVICEMETRIC;
if ("DeviceRequest".equals(codeString))
return DEVICEREQUEST;
if ("DeviceUseStatement".equals(codeString))
return DEVICEUSESTATEMENT;
if ("DiagnosticReport".equals(codeString))
return DIAGNOSTICREPORT;
if ("DocumentManifest".equals(codeString))
return DOCUMENTMANIFEST;
if ("DocumentReference".equals(codeString))
return DOCUMENTREFERENCE;
if ("DomainResource".equals(codeString))
return DOMAINRESOURCE;
if ("EffectEvidenceSynthesis".equals(codeString))
return EFFECTEVIDENCESYNTHESIS;
if ("Encounter".equals(codeString))
return ENCOUNTER;
if ("Endpoint".equals(codeString))
return ENDPOINT;
if ("EnrollmentRequest".equals(codeString))
return ENROLLMENTREQUEST;
if ("EnrollmentResponse".equals(codeString))
return ENROLLMENTRESPONSE;
if ("EpisodeOfCare".equals(codeString))
return EPISODEOFCARE;
if ("EventDefinition".equals(codeString))
return EVENTDEFINITION;
if ("Evidence".equals(codeString))
return EVIDENCE;
if ("EvidenceVariable".equals(codeString))
return EVIDENCEVARIABLE;
if ("ExampleScenario".equals(codeString))
return EXAMPLESCENARIO;
if ("ExplanationOfBenefit".equals(codeString))
return EXPLANATIONOFBENEFIT;
if ("FamilyMemberHistory".equals(codeString))
return FAMILYMEMBERHISTORY;
if ("Flag".equals(codeString))
return FLAG;
if ("Goal".equals(codeString))
return GOAL;
if ("GraphDefinition".equals(codeString))
return GRAPHDEFINITION;
if ("Group".equals(codeString))
return GROUP;
if ("GuidanceResponse".equals(codeString))
return GUIDANCERESPONSE;
if ("HealthcareService".equals(codeString))
return HEALTHCARESERVICE;
if ("ImagingStudy".equals(codeString))
return IMAGINGSTUDY;
if ("Immunization".equals(codeString))
return IMMUNIZATION;
if ("ImmunizationEvaluation".equals(codeString))
return IMMUNIZATIONEVALUATION;
if ("ImmunizationRecommendation".equals(codeString))
return IMMUNIZATIONRECOMMENDATION;
if ("ImplementationGuide".equals(codeString))
return IMPLEMENTATIONGUIDE;
if ("InsurancePlan".equals(codeString))
return INSURANCEPLAN;
if ("Invoice".equals(codeString))
return INVOICE;
if ("Library".equals(codeString))
return LIBRARY;
if ("Linkage".equals(codeString))
return LINKAGE;
if ("List".equals(codeString))
return LIST;
if ("Location".equals(codeString))
return LOCATION;
if ("Measure".equals(codeString))
return MEASURE;
if ("MeasureReport".equals(codeString))
return MEASUREREPORT;
if ("Media".equals(codeString))
return MEDIA;
if ("Medication".equals(codeString))
return MEDICATION;
if ("MedicationAdministration".equals(codeString))
return MEDICATIONADMINISTRATION;
if ("MedicationDispense".equals(codeString))
return MEDICATIONDISPENSE;
if ("MedicationKnowledge".equals(codeString))
return MEDICATIONKNOWLEDGE;
if ("MedicationRequest".equals(codeString))
return MEDICATIONREQUEST;
if ("MedicationStatement".equals(codeString))
return MEDICATIONSTATEMENT;
if ("MedicinalProduct".equals(codeString))
return MEDICINALPRODUCT;
if ("MedicinalProductAuthorization".equals(codeString))
return MEDICINALPRODUCTAUTHORIZATION;
if ("MedicinalProductContraindication".equals(codeString))
return MEDICINALPRODUCTCONTRAINDICATION;
if ("MedicinalProductIndication".equals(codeString))
return MEDICINALPRODUCTINDICATION;
if ("MedicinalProductIngredient".equals(codeString))
return MEDICINALPRODUCTINGREDIENT;
if ("MedicinalProductInteraction".equals(codeString))
return MEDICINALPRODUCTINTERACTION;
if ("MedicinalProductManufactured".equals(codeString))
return MEDICINALPRODUCTMANUFACTURED;
if ("MedicinalProductPackaged".equals(codeString))
return MEDICINALPRODUCTPACKAGED;
if ("MedicinalProductPharmaceutical".equals(codeString))
return MEDICINALPRODUCTPHARMACEUTICAL;
if ("MedicinalProductUndesirableEffect".equals(codeString))
return MEDICINALPRODUCTUNDESIRABLEEFFECT;
if ("MessageDefinition".equals(codeString))
return MESSAGEDEFINITION;
if ("MessageHeader".equals(codeString))
return MESSAGEHEADER;
if ("MolecularSequence".equals(codeString))
return MOLECULARSEQUENCE;
if ("NamingSystem".equals(codeString))
return NAMINGSYSTEM;
if ("NutritionOrder".equals(codeString))
return NUTRITIONORDER;
if ("Observation".equals(codeString))
return OBSERVATION;
if ("ObservationDefinition".equals(codeString))
return OBSERVATIONDEFINITION;
if ("OperationDefinition".equals(codeString))
return OPERATIONDEFINITION;
if ("OperationOutcome".equals(codeString))
return OPERATIONOUTCOME;
if ("Organization".equals(codeString))
return ORGANIZATION;
if ("OrganizationAffiliation".equals(codeString))
return ORGANIZATIONAFFILIATION;
if ("Parameters".equals(codeString))
return PARAMETERS;
if ("Patient".equals(codeString))
return PATIENT;
if ("PaymentNotice".equals(codeString))
return PAYMENTNOTICE;
if ("PaymentReconciliation".equals(codeString))
return PAYMENTRECONCILIATION;
if ("Person".equals(codeString))
return PERSON;
if ("PlanDefinition".equals(codeString))
return PLANDEFINITION;
if ("Practitioner".equals(codeString))
return PRACTITIONER;
if ("PractitionerRole".equals(codeString))
return PRACTITIONERROLE;
if ("Procedure".equals(codeString))
return PROCEDURE;
if ("Provenance".equals(codeString))
return PROVENANCE;
if ("Questionnaire".equals(codeString))
return QUESTIONNAIRE;
if ("QuestionnaireResponse".equals(codeString))
return QUESTIONNAIRERESPONSE;
if ("RelatedPerson".equals(codeString))
return RELATEDPERSON;
if ("RequestGroup".equals(codeString))
return REQUESTGROUP;
if ("ResearchDefinition".equals(codeString))
return RESEARCHDEFINITION;
if ("ResearchElementDefinition".equals(codeString))
return RESEARCHELEMENTDEFINITION;
if ("ResearchStudy".equals(codeString))
return RESEARCHSTUDY;
if ("ResearchSubject".equals(codeString))
return RESEARCHSUBJECT;
if ("Resource".equals(codeString))
return RESOURCE;
if ("RiskAssessment".equals(codeString))
return RISKASSESSMENT;
if ("RiskEvidenceSynthesis".equals(codeString))
return RISKEVIDENCESYNTHESIS;
if ("Schedule".equals(codeString))
return SCHEDULE;
if ("SearchParameter".equals(codeString))
return SEARCHPARAMETER;
if ("ServiceRequest".equals(codeString))
return SERVICEREQUEST;
if ("Slot".equals(codeString))
return SLOT;
if ("Specimen".equals(codeString))
return SPECIMEN;
if ("SpecimenDefinition".equals(codeString))
return SPECIMENDEFINITION;
if ("StructureDefinition".equals(codeString))
return STRUCTUREDEFINITION;
if ("StructureMap".equals(codeString))
return STRUCTUREMAP;
if ("Subscription".equals(codeString))
return SUBSCRIPTION;
if ("Substance".equals(codeString))
return SUBSTANCE;
if ("SubstanceNucleicAcid".equals(codeString))
return SUBSTANCENUCLEICACID;
if ("SubstancePolymer".equals(codeString))
return SUBSTANCEPOLYMER;
if ("SubstanceProtein".equals(codeString))
return SUBSTANCEPROTEIN;
if ("SubstanceReferenceInformation".equals(codeString))
return SUBSTANCEREFERENCEINFORMATION;
if ("SubstanceSourceMaterial".equals(codeString))
return SUBSTANCESOURCEMATERIAL;
if ("SubstanceSpecification".equals(codeString))
return SUBSTANCESPECIFICATION;
if ("SupplyDelivery".equals(codeString))
return SUPPLYDELIVERY;
if ("SupplyRequest".equals(codeString))
return SUPPLYREQUEST;
if ("Task".equals(codeString))
return TASK;
if ("TerminologyCapabilities".equals(codeString))
return TERMINOLOGYCAPABILITIES;
if ("TestReport".equals(codeString))
return TESTREPORT;
if ("TestScript".equals(codeString))
return TESTSCRIPT;
if ("ValueSet".equals(codeString))
return VALUESET;
if ("VerificationResult".equals(codeString))
return VERIFICATIONRESULT;
if ("VisionPrescription".equals(codeString))
return VISIONPRESCRIPTION;
if ("Type".equals(codeString))
return TYPE;
if ("Any".equals(codeString))
return ANY;
throw new FHIRException("Unknown FHIRAllTypes code '" + codeString + "'");
}
public String toCode() {
switch (this) {
case ADDRESS:
return "Address";
case AGE:
return "Age";
case ANNOTATION:
return "Annotation";
case ATTACHMENT:
return "Attachment";
case BACKBONEELEMENT:
return "BackboneElement";
case CODEABLECONCEPT:
return "CodeableConcept";
case CODING:
return "Coding";
case CONTACTDETAIL:
return "ContactDetail";
case CONTACTPOINT:
return "ContactPoint";
case CONTRIBUTOR:
return "Contributor";
case COUNT:
return "Count";
case DATAREQUIREMENT:
return "DataRequirement";
case DISTANCE:
return "Distance";
case DOSAGE:
return "Dosage";
case DURATION:
return "Duration";
case ELEMENT:
return "Element";
case ELEMENTDEFINITION:
return "ElementDefinition";
case EXPRESSION:
return "Expression";
case EXTENSION:
return "Extension";
case HUMANNAME:
return "HumanName";
case IDENTIFIER:
return "Identifier";
case MARKETINGSTATUS:
return "MarketingStatus";
case META:
return "Meta";
case MONEY:
return "Money";
case MONEYQUANTITY:
return "MoneyQuantity";
case NARRATIVE:
return "Narrative";
case PARAMETERDEFINITION:
return "ParameterDefinition";
case PERIOD:
return "Period";
case POPULATION:
return "Population";
case PRODCHARACTERISTIC:
return "ProdCharacteristic";
case PRODUCTSHELFLIFE:
return "ProductShelfLife";
case QUANTITY:
return "Quantity";
case RANGE:
return "Range";
case RATIO:
return "Ratio";
case REFERENCE:
return "Reference";
case RELATEDARTIFACT:
return "RelatedArtifact";
case SAMPLEDDATA:
return "SampledData";
case SIGNATURE:
return "Signature";
case SIMPLEQUANTITY:
return "SimpleQuantity";
case SUBSTANCEAMOUNT:
return "SubstanceAmount";
case TIMING:
return "Timing";
case TRIGGERDEFINITION:
return "TriggerDefinition";
case USAGECONTEXT:
return "UsageContext";
case BASE64BINARY:
return "base64Binary";
case BOOLEAN:
return "boolean";
case CANONICAL:
return "canonical";
case CODE:
return "code";
case DATE:
return "date";
case DATETIME:
return "dateTime";
case DECIMAL:
return "decimal";
case ID:
return "id";
case INSTANT:
return "instant";
case INTEGER:
return "integer";
case MARKDOWN:
return "markdown";
case OID:
return "oid";
case POSITIVEINT:
return "positiveInt";
case STRING:
return "string";
case TIME:
return "time";
case UNSIGNEDINT:
return "unsignedInt";
case URI:
return "uri";
case URL:
return "url";
case UUID:
return "uuid";
case XHTML:
return "xhtml";
case ACCOUNT:
return "Account";
case ACTIVITYDEFINITION:
return "ActivityDefinition";
case ADVERSEEVENT:
return "AdverseEvent";
case ALLERGYINTOLERANCE:
return "AllergyIntolerance";
case APPOINTMENT:
return "Appointment";
case APPOINTMENTRESPONSE:
return "AppointmentResponse";
case AUDITEVENT:
return "AuditEvent";
case BASIC:
return "Basic";
case BINARY:
return "Binary";
case BIOLOGICALLYDERIVEDPRODUCT:
return "BiologicallyDerivedProduct";
case BODYSTRUCTURE:
return "BodyStructure";
case BUNDLE:
return "Bundle";
case CAPABILITYSTATEMENT:
return "CapabilityStatement";
case CAREPLAN:
return "CarePlan";
case CARETEAM:
return "CareTeam";
case CATALOGENTRY:
return "CatalogEntry";
case CHARGEITEM:
return "ChargeItem";
case CHARGEITEMDEFINITION:
return "ChargeItemDefinition";
case CLAIM:
return "Claim";
case CLAIMRESPONSE:
return "ClaimResponse";
case CLINICALIMPRESSION:
return "ClinicalImpression";
case CODESYSTEM:
return "CodeSystem";
case COMMUNICATION:
return "Communication";
case COMMUNICATIONREQUEST:
return "CommunicationRequest";
case COMPARTMENTDEFINITION:
return "CompartmentDefinition";
case COMPOSITION:
return "Composition";
case CONCEPTMAP:
return "ConceptMap";
case CONDITION:
return "Condition";
case CONSENT:
return "Consent";
case CONTRACT:
return "Contract";
case COVERAGE:
return "Coverage";
case COVERAGEELIGIBILITYREQUEST:
return "CoverageEligibilityRequest";
case COVERAGEELIGIBILITYRESPONSE:
return "CoverageEligibilityResponse";
case DETECTEDISSUE:
return "DetectedIssue";
case DEVICE:
return "Device";
case DEVICEDEFINITION:
return "DeviceDefinition";
case DEVICEMETRIC:
return "DeviceMetric";
case DEVICEREQUEST:
return "DeviceRequest";
case DEVICEUSESTATEMENT:
return "DeviceUseStatement";
case DIAGNOSTICREPORT:
return "DiagnosticReport";
case DOCUMENTMANIFEST:
return "DocumentManifest";
case DOCUMENTREFERENCE:
return "DocumentReference";
case DOMAINRESOURCE:
return "DomainResource";
case EFFECTEVIDENCESYNTHESIS:
return "EffectEvidenceSynthesis";
case ENCOUNTER:
return "Encounter";
case ENDPOINT:
return "Endpoint";
case ENROLLMENTREQUEST:
return "EnrollmentRequest";
case ENROLLMENTRESPONSE:
return "EnrollmentResponse";
case EPISODEOFCARE:
return "EpisodeOfCare";
case EVENTDEFINITION:
return "EventDefinition";
case EVIDENCE:
return "Evidence";
case EVIDENCEVARIABLE:
return "EvidenceVariable";
case EXAMPLESCENARIO:
return "ExampleScenario";
case EXPLANATIONOFBENEFIT:
return "ExplanationOfBenefit";
case FAMILYMEMBERHISTORY:
return "FamilyMemberHistory";
case FLAG:
return "Flag";
case GOAL:
return "Goal";
case GRAPHDEFINITION:
return "GraphDefinition";
case GROUP:
return "Group";
case GUIDANCERESPONSE:
return "GuidanceResponse";
case HEALTHCARESERVICE:
return "HealthcareService";
case IMAGINGSTUDY:
return "ImagingStudy";
case IMMUNIZATION:
return "Immunization";
case IMMUNIZATIONEVALUATION:
return "ImmunizationEvaluation";
case IMMUNIZATIONRECOMMENDATION:
return "ImmunizationRecommendation";
case IMPLEMENTATIONGUIDE:
return "ImplementationGuide";
case INSURANCEPLAN:
return "InsurancePlan";
case INVOICE:
return "Invoice";
case LIBRARY:
return "Library";
case LINKAGE:
return "Linkage";
case LIST:
return "List";
case LOCATION:
return "Location";
case MEASURE:
return "Measure";
case MEASUREREPORT:
return "MeasureReport";
case MEDIA:
return "Media";
case MEDICATION:
return "Medication";
case MEDICATIONADMINISTRATION:
return "MedicationAdministration";
case MEDICATIONDISPENSE:
return "MedicationDispense";
case MEDICATIONKNOWLEDGE:
return "MedicationKnowledge";
case MEDICATIONREQUEST:
return "MedicationRequest";
case MEDICATIONSTATEMENT:
return "MedicationStatement";
case MEDICINALPRODUCT:
return "MedicinalProduct";
case MEDICINALPRODUCTAUTHORIZATION:
return "MedicinalProductAuthorization";
case MEDICINALPRODUCTCONTRAINDICATION:
return "MedicinalProductContraindication";
case MEDICINALPRODUCTINDICATION:
return "MedicinalProductIndication";
case MEDICINALPRODUCTINGREDIENT:
return "MedicinalProductIngredient";
case MEDICINALPRODUCTINTERACTION:
return "MedicinalProductInteraction";
case MEDICINALPRODUCTMANUFACTURED:
return "MedicinalProductManufactured";
case MEDICINALPRODUCTPACKAGED:
return "MedicinalProductPackaged";
case MEDICINALPRODUCTPHARMACEUTICAL:
return "MedicinalProductPharmaceutical";
case MEDICINALPRODUCTUNDESIRABLEEFFECT:
return "MedicinalProductUndesirableEffect";
case MESSAGEDEFINITION:
return "MessageDefinition";
case MESSAGEHEADER:
return "MessageHeader";
case MOLECULARSEQUENCE:
return "MolecularSequence";
case NAMINGSYSTEM:
return "NamingSystem";
case NUTRITIONORDER:
return "NutritionOrder";
case OBSERVATION:
return "Observation";
case OBSERVATIONDEFINITION:
return "ObservationDefinition";
case OPERATIONDEFINITION:
return "OperationDefinition";
case OPERATIONOUTCOME:
return "OperationOutcome";
case ORGANIZATION:
return "Organization";
case ORGANIZATIONAFFILIATION:
return "OrganizationAffiliation";
case PARAMETERS:
return "Parameters";
case PATIENT:
return "Patient";
case PAYMENTNOTICE:
return "PaymentNotice";
case PAYMENTRECONCILIATION:
return "PaymentReconciliation";
case PERSON:
return "Person";
case PLANDEFINITION:
return "PlanDefinition";
case PRACTITIONER:
return "Practitioner";
case PRACTITIONERROLE:
return "PractitionerRole";
case PROCEDURE:
return "Procedure";
case PROVENANCE:
return "Provenance";
case QUESTIONNAIRE:
return "Questionnaire";
case QUESTIONNAIRERESPONSE:
return "QuestionnaireResponse";
case RELATEDPERSON:
return "RelatedPerson";
case REQUESTGROUP:
return "RequestGroup";
case RESEARCHDEFINITION:
return "ResearchDefinition";
case RESEARCHELEMENTDEFINITION:
return "ResearchElementDefinition";
case RESEARCHSTUDY:
return "ResearchStudy";
case RESEARCHSUBJECT:
return "ResearchSubject";
case RESOURCE:
return "Resource";
case RISKASSESSMENT:
return "RiskAssessment";
case RISKEVIDENCESYNTHESIS:
return "RiskEvidenceSynthesis";
case SCHEDULE:
return "Schedule";
case SEARCHPARAMETER:
return "SearchParameter";
case SERVICEREQUEST:
return "ServiceRequest";
case SLOT:
return "Slot";
case SPECIMEN:
return "Specimen";
case SPECIMENDEFINITION:
return "SpecimenDefinition";
case STRUCTUREDEFINITION:
return "StructureDefinition";
case STRUCTUREMAP:
return "StructureMap";
case SUBSCRIPTION:
return "Subscription";
case SUBSTANCE:
return "Substance";
case SUBSTANCENUCLEICACID:
return "SubstanceNucleicAcid";
case SUBSTANCEPOLYMER:
return "SubstancePolymer";
case SUBSTANCEPROTEIN:
return "SubstanceProtein";
case SUBSTANCEREFERENCEINFORMATION:
return "SubstanceReferenceInformation";
case SUBSTANCESOURCEMATERIAL:
return "SubstanceSourceMaterial";
case SUBSTANCESPECIFICATION:
return "SubstanceSpecification";
case SUPPLYDELIVERY:
return "SupplyDelivery";
case SUPPLYREQUEST:
return "SupplyRequest";
case TASK:
return "Task";
case TERMINOLOGYCAPABILITIES:
return "TerminologyCapabilities";
case TESTREPORT:
return "TestReport";
case TESTSCRIPT:
return "TestScript";
case VALUESET:
return "ValueSet";
case VERIFICATIONRESULT:
return "VerificationResult";
case VISIONPRESCRIPTION:
return "VisionPrescription";
case TYPE:
return "Type";
case ANY:
return "Any";
case NULL:
return null;
default:
return "?";
}
}
public String getSystem() {
switch (this) {
case ADDRESS:
return "http://hl7.org/fhir/data-types";
case AGE:
return "http://hl7.org/fhir/data-types";
case ANNOTATION:
return "http://hl7.org/fhir/data-types";
case ATTACHMENT:
return "http://hl7.org/fhir/data-types";
case BACKBONEELEMENT:
return "http://hl7.org/fhir/data-types";
case CODEABLECONCEPT:
return "http://hl7.org/fhir/data-types";
case CODING:
return "http://hl7.org/fhir/data-types";
case CONTACTDETAIL:
return "http://hl7.org/fhir/data-types";
case CONTACTPOINT:
return "http://hl7.org/fhir/data-types";
case CONTRIBUTOR:
return "http://hl7.org/fhir/data-types";
case COUNT:
return "http://hl7.org/fhir/data-types";
case DATAREQUIREMENT:
return "http://hl7.org/fhir/data-types";
case DISTANCE:
return "http://hl7.org/fhir/data-types";
case DOSAGE:
return "http://hl7.org/fhir/data-types";
case DURATION:
return "http://hl7.org/fhir/data-types";
case ELEMENT:
return "http://hl7.org/fhir/data-types";
case ELEMENTDEFINITION:
return "http://hl7.org/fhir/data-types";
case EXPRESSION:
return "http://hl7.org/fhir/data-types";
case EXTENSION:
return "http://hl7.org/fhir/data-types";
case HUMANNAME:
return "http://hl7.org/fhir/data-types";
case IDENTIFIER:
return "http://hl7.org/fhir/data-types";
case MARKETINGSTATUS:
return "http://hl7.org/fhir/data-types";
case META:
return "http://hl7.org/fhir/data-types";
case MONEY:
return "http://hl7.org/fhir/data-types";
case MONEYQUANTITY:
return "http://hl7.org/fhir/data-types";
case NARRATIVE:
return "http://hl7.org/fhir/data-types";
case PARAMETERDEFINITION:
return "http://hl7.org/fhir/data-types";
case PERIOD:
return "http://hl7.org/fhir/data-types";
case POPULATION:
return "http://hl7.org/fhir/data-types";
case PRODCHARACTERISTIC:
return "http://hl7.org/fhir/data-types";
case PRODUCTSHELFLIFE:
return "http://hl7.org/fhir/data-types";
case QUANTITY:
return "http://hl7.org/fhir/data-types";
case RANGE:
return "http://hl7.org/fhir/data-types";
case RATIO:
return "http://hl7.org/fhir/data-types";
case REFERENCE:
return "http://hl7.org/fhir/data-types";
case RELATEDARTIFACT:
return "http://hl7.org/fhir/data-types";
case SAMPLEDDATA:
return "http://hl7.org/fhir/data-types";
case SIGNATURE:
return "http://hl7.org/fhir/data-types";
case SIMPLEQUANTITY:
return "http://hl7.org/fhir/data-types";
case SUBSTANCEAMOUNT:
return "http://hl7.org/fhir/data-types";
case TIMING:
return "http://hl7.org/fhir/data-types";
case TRIGGERDEFINITION:
return "http://hl7.org/fhir/data-types";
case USAGECONTEXT:
return "http://hl7.org/fhir/data-types";
case BASE64BINARY:
return "http://hl7.org/fhir/data-types";
case BOOLEAN:
return "http://hl7.org/fhir/data-types";
case CANONICAL:
return "http://hl7.org/fhir/data-types";
case CODE:
return "http://hl7.org/fhir/data-types";
case DATE:
return "http://hl7.org/fhir/data-types";
case DATETIME:
return "http://hl7.org/fhir/data-types";
case DECIMAL:
return "http://hl7.org/fhir/data-types";
case ID:
return "http://hl7.org/fhir/data-types";
case INSTANT:
return "http://hl7.org/fhir/data-types";
case INTEGER:
return "http://hl7.org/fhir/data-types";
case MARKDOWN:
return "http://hl7.org/fhir/data-types";
case OID:
return "http://hl7.org/fhir/data-types";
case POSITIVEINT:
return "http://hl7.org/fhir/data-types";
case STRING:
return "http://hl7.org/fhir/data-types";
case TIME:
return "http://hl7.org/fhir/data-types";
case UNSIGNEDINT:
return "http://hl7.org/fhir/data-types";
case URI:
return "http://hl7.org/fhir/data-types";
case URL:
return "http://hl7.org/fhir/data-types";
case UUID:
return "http://hl7.org/fhir/data-types";
case XHTML:
return "http://hl7.org/fhir/data-types";
case ACCOUNT:
return "http://hl7.org/fhir/resource-types";
case ACTIVITYDEFINITION:
return "http://hl7.org/fhir/resource-types";
case ADVERSEEVENT:
return "http://hl7.org/fhir/resource-types";
case ALLERGYINTOLERANCE:
return "http://hl7.org/fhir/resource-types";
case APPOINTMENT:
return "http://hl7.org/fhir/resource-types";
case APPOINTMENTRESPONSE:
return "http://hl7.org/fhir/resource-types";
case AUDITEVENT:
return "http://hl7.org/fhir/resource-types";
case BASIC:
return "http://hl7.org/fhir/resource-types";
case BINARY:
return "http://hl7.org/fhir/resource-types";
case BIOLOGICALLYDERIVEDPRODUCT:
return "http://hl7.org/fhir/resource-types";
case BODYSTRUCTURE:
return "http://hl7.org/fhir/resource-types";
case BUNDLE:
return "http://hl7.org/fhir/resource-types";
case CAPABILITYSTATEMENT:
return "http://hl7.org/fhir/resource-types";
case CAREPLAN:
return "http://hl7.org/fhir/resource-types";
case CARETEAM:
return "http://hl7.org/fhir/resource-types";
case CATALOGENTRY:
return "http://hl7.org/fhir/resource-types";
case CHARGEITEM:
return "http://hl7.org/fhir/resource-types";
case CHARGEITEMDEFINITION:
return "http://hl7.org/fhir/resource-types";
case CLAIM:
return "http://hl7.org/fhir/resource-types";
case CLAIMRESPONSE:
return "http://hl7.org/fhir/resource-types";
case CLINICALIMPRESSION:
return "http://hl7.org/fhir/resource-types";
case CODESYSTEM:
return "http://hl7.org/fhir/resource-types";
case COMMUNICATION:
return "http://hl7.org/fhir/resource-types";
case COMMUNICATIONREQUEST:
return "http://hl7.org/fhir/resource-types";
case COMPARTMENTDEFINITION:
return "http://hl7.org/fhir/resource-types";
case COMPOSITION:
return "http://hl7.org/fhir/resource-types";
case CONCEPTMAP:
return "http://hl7.org/fhir/resource-types";
case CONDITION:
return "http://hl7.org/fhir/resource-types";
case CONSENT:
return "http://hl7.org/fhir/resource-types";
case CONTRACT:
return "http://hl7.org/fhir/resource-types";
case COVERAGE:
return "http://hl7.org/fhir/resource-types";
case COVERAGEELIGIBILITYREQUEST:
return "http://hl7.org/fhir/resource-types";
case COVERAGEELIGIBILITYRESPONSE:
return "http://hl7.org/fhir/resource-types";
case DETECTEDISSUE:
return "http://hl7.org/fhir/resource-types";
case DEVICE:
return "http://hl7.org/fhir/resource-types";
case DEVICEDEFINITION:
return "http://hl7.org/fhir/resource-types";
case DEVICEMETRIC:
return "http://hl7.org/fhir/resource-types";
case DEVICEREQUEST:
return "http://hl7.org/fhir/resource-types";
case DEVICEUSESTATEMENT:
return "http://hl7.org/fhir/resource-types";
case DIAGNOSTICREPORT:
return "http://hl7.org/fhir/resource-types";
case DOCUMENTMANIFEST:
return "http://hl7.org/fhir/resource-types";
case DOCUMENTREFERENCE:
return "http://hl7.org/fhir/resource-types";
case DOMAINRESOURCE:
return "http://hl7.org/fhir/resource-types";
case EFFECTEVIDENCESYNTHESIS:
return "http://hl7.org/fhir/resource-types";
case ENCOUNTER:
return "http://hl7.org/fhir/resource-types";
case ENDPOINT:
return "http://hl7.org/fhir/resource-types";
case ENROLLMENTREQUEST:
return "http://hl7.org/fhir/resource-types";
case ENROLLMENTRESPONSE:
return "http://hl7.org/fhir/resource-types";
case EPISODEOFCARE:
return "http://hl7.org/fhir/resource-types";
case EVENTDEFINITION:
return "http://hl7.org/fhir/resource-types";
case EVIDENCE:
return "http://hl7.org/fhir/resource-types";
case EVIDENCEVARIABLE:
return "http://hl7.org/fhir/resource-types";
case EXAMPLESCENARIO:
return "http://hl7.org/fhir/resource-types";
case EXPLANATIONOFBENEFIT:
return "http://hl7.org/fhir/resource-types";
case FAMILYMEMBERHISTORY:
return "http://hl7.org/fhir/resource-types";
case FLAG:
return "http://hl7.org/fhir/resource-types";
case GOAL:
return "http://hl7.org/fhir/resource-types";
case GRAPHDEFINITION:
return "http://hl7.org/fhir/resource-types";
case GROUP:
return "http://hl7.org/fhir/resource-types";
case GUIDANCERESPONSE:
return "http://hl7.org/fhir/resource-types";
case HEALTHCARESERVICE:
return "http://hl7.org/fhir/resource-types";
case IMAGINGSTUDY:
return "http://hl7.org/fhir/resource-types";
case IMMUNIZATION:
return "http://hl7.org/fhir/resource-types";
case IMMUNIZATIONEVALUATION:
return "http://hl7.org/fhir/resource-types";
case IMMUNIZATIONRECOMMENDATION:
return "http://hl7.org/fhir/resource-types";
case IMPLEMENTATIONGUIDE:
return "http://hl7.org/fhir/resource-types";
case INSURANCEPLAN:
return "http://hl7.org/fhir/resource-types";
case INVOICE:
return "http://hl7.org/fhir/resource-types";
case LIBRARY:
return "http://hl7.org/fhir/resource-types";
case LINKAGE:
return "http://hl7.org/fhir/resource-types";
case LIST:
return "http://hl7.org/fhir/resource-types";
case LOCATION:
return "http://hl7.org/fhir/resource-types";
case MEASURE:
return "http://hl7.org/fhir/resource-types";
case MEASUREREPORT:
return "http://hl7.org/fhir/resource-types";
case MEDIA:
return "http://hl7.org/fhir/resource-types";
case MEDICATION:
return "http://hl7.org/fhir/resource-types";
case MEDICATIONADMINISTRATION:
return "http://hl7.org/fhir/resource-types";
case MEDICATIONDISPENSE:
return "http://hl7.org/fhir/resource-types";
case MEDICATIONKNOWLEDGE:
return "http://hl7.org/fhir/resource-types";
case MEDICATIONREQUEST:
return "http://hl7.org/fhir/resource-types";
case MEDICATIONSTATEMENT:
return "http://hl7.org/fhir/resource-types";
case MEDICINALPRODUCT:
return "http://hl7.org/fhir/resource-types";
case MEDICINALPRODUCTAUTHORIZATION:
return "http://hl7.org/fhir/resource-types";
case MEDICINALPRODUCTCONTRAINDICATION:
return "http://hl7.org/fhir/resource-types";
case MEDICINALPRODUCTINDICATION:
return "http://hl7.org/fhir/resource-types";
case MEDICINALPRODUCTINGREDIENT:
return "http://hl7.org/fhir/resource-types";
case MEDICINALPRODUCTINTERACTION:
return "http://hl7.org/fhir/resource-types";
case MEDICINALPRODUCTMANUFACTURED:
return "http://hl7.org/fhir/resource-types";
case MEDICINALPRODUCTPACKAGED:
return "http://hl7.org/fhir/resource-types";
case MEDICINALPRODUCTPHARMACEUTICAL:
return "http://hl7.org/fhir/resource-types";
case MEDICINALPRODUCTUNDESIRABLEEFFECT:
return "http://hl7.org/fhir/resource-types";
case MESSAGEDEFINITION:
return "http://hl7.org/fhir/resource-types";
case MESSAGEHEADER:
return "http://hl7.org/fhir/resource-types";
case MOLECULARSEQUENCE:
return "http://hl7.org/fhir/resource-types";
case NAMINGSYSTEM:
return "http://hl7.org/fhir/resource-types";
case NUTRITIONORDER:
return "http://hl7.org/fhir/resource-types";
case OBSERVATION:
return "http://hl7.org/fhir/resource-types";
case OBSERVATIONDEFINITION:
return "http://hl7.org/fhir/resource-types";
case OPERATIONDEFINITION:
return "http://hl7.org/fhir/resource-types";
case OPERATIONOUTCOME:
return "http://hl7.org/fhir/resource-types";
case ORGANIZATION:
return "http://hl7.org/fhir/resource-types";
case ORGANIZATIONAFFILIATION:
return "http://hl7.org/fhir/resource-types";
case PARAMETERS:
return "http://hl7.org/fhir/resource-types";
case PATIENT:
return "http://hl7.org/fhir/resource-types";
case PAYMENTNOTICE:
return "http://hl7.org/fhir/resource-types";
case PAYMENTRECONCILIATION:
return "http://hl7.org/fhir/resource-types";
case PERSON:
return "http://hl7.org/fhir/resource-types";
case PLANDEFINITION:
return "http://hl7.org/fhir/resource-types";
case PRACTITIONER:
return "http://hl7.org/fhir/resource-types";
case PRACTITIONERROLE:
return "http://hl7.org/fhir/resource-types";
case PROCEDURE:
return "http://hl7.org/fhir/resource-types";
case PROVENANCE:
return "http://hl7.org/fhir/resource-types";
case QUESTIONNAIRE:
return "http://hl7.org/fhir/resource-types";
case QUESTIONNAIRERESPONSE:
return "http://hl7.org/fhir/resource-types";
case RELATEDPERSON:
return "http://hl7.org/fhir/resource-types";
case REQUESTGROUP:
return "http://hl7.org/fhir/resource-types";
case RESEARCHDEFINITION:
return "http://hl7.org/fhir/resource-types";
case RESEARCHELEMENTDEFINITION:
return "http://hl7.org/fhir/resource-types";
case RESEARCHSTUDY:
return "http://hl7.org/fhir/resource-types";
case RESEARCHSUBJECT:
return "http://hl7.org/fhir/resource-types";
case RESOURCE:
return "http://hl7.org/fhir/resource-types";
case RISKASSESSMENT:
return "http://hl7.org/fhir/resource-types";
case RISKEVIDENCESYNTHESIS:
return "http://hl7.org/fhir/resource-types";
case SCHEDULE:
return "http://hl7.org/fhir/resource-types";
case SEARCHPARAMETER:
return "http://hl7.org/fhir/resource-types";
case SERVICEREQUEST:
return "http://hl7.org/fhir/resource-types";
case SLOT:
return "http://hl7.org/fhir/resource-types";
case SPECIMEN:
return "http://hl7.org/fhir/resource-types";
case SPECIMENDEFINITION:
return "http://hl7.org/fhir/resource-types";
case STRUCTUREDEFINITION:
return "http://hl7.org/fhir/resource-types";
case STRUCTUREMAP:
return "http://hl7.org/fhir/resource-types";
case SUBSCRIPTION:
return "http://hl7.org/fhir/resource-types";
case SUBSTANCE:
return "http://hl7.org/fhir/resource-types";
case SUBSTANCENUCLEICACID:
return "http://hl7.org/fhir/resource-types";
case SUBSTANCEPOLYMER:
return "http://hl7.org/fhir/resource-types";
case SUBSTANCEPROTEIN:
return "http://hl7.org/fhir/resource-types";
case SUBSTANCEREFERENCEINFORMATION:
return "http://hl7.org/fhir/resource-types";
case SUBSTANCESOURCEMATERIAL:
return "http://hl7.org/fhir/resource-types";
case SUBSTANCESPECIFICATION:
return "http://hl7.org/fhir/resource-types";
case SUPPLYDELIVERY:
return "http://hl7.org/fhir/resource-types";
case SUPPLYREQUEST:
return "http://hl7.org/fhir/resource-types";
case TASK:
return "http://hl7.org/fhir/resource-types";
case TERMINOLOGYCAPABILITIES:
return "http://hl7.org/fhir/resource-types";
case TESTREPORT:
return "http://hl7.org/fhir/resource-types";
case TESTSCRIPT:
return "http://hl7.org/fhir/resource-types";
case VALUESET:
return "http://hl7.org/fhir/resource-types";
case VERIFICATIONRESULT:
return "http://hl7.org/fhir/resource-types";
case VISIONPRESCRIPTION:
return "http://hl7.org/fhir/resource-types";
case TYPE:
return "http://hl7.org/fhir/abstract-types";
case ANY:
return "http://hl7.org/fhir/abstract-types";
case NULL:
return null;
default:
return "?";
}
}
public String getDefinition() {
switch (this) {
case ADDRESS:
return "An address expressed using postal conventions (as opposed to GPS or other location definition formats). This data type may be used to convey addresses for use in delivering mail as well as for visiting locations which might not be valid for mail delivery. There are a variety of postal address formats defined around the world.";
case AGE:
return "A duration of time during which an organism (or a process) has existed.";
case ANNOTATION:
return "A text note which also contains information about who made the statement and when.";
case ATTACHMENT:
return "For referring to data content defined in other formats.";
case BACKBONEELEMENT:
return "Base definition for all elements that are defined inside a resource - but not those in a data type.";
case CODEABLECONCEPT:
return "A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.";
case CODING:
return "A reference to a code defined by a terminology system.";
case CONTACTDETAIL:
return "Specifies contact information for a person or organization.";
case CONTACTPOINT:
return "Details for all kinds of technology mediated contact points for a person or organization, including telephone, email, etc.";
case CONTRIBUTOR:
return "A contributor to the content of a knowledge asset, including authors, editors, reviewers, and endorsers.";
case COUNT:
return "A measured amount (or an amount that can potentially be measured). Note that measured amounts include amounts that are not precisely quantified, including amounts involving arbitrary units and floating currencies.";
case DATAREQUIREMENT:
return "Describes a required data item for evaluation in terms of the type of data, and optional code or date-based filters of the data.";
case DISTANCE:
return "A length - a value with a unit that is a physical distance.";
case DOSAGE:
return "Indicates how the medication is/was taken or should be taken by the patient.";
case DURATION:
return "A length of time.";
case ELEMENT:
return "Base definition for all elements in a resource.";
case ELEMENTDEFINITION:
return "Captures constraints on each element within the resource, profile, or extension.";
case EXPRESSION:
return "A expression that is evaluated in a specified context and returns a value. The context of use of the expression must specify the context in which the expression is evaluated, and how the result of the expression is used.";
case EXTENSION:
return "Optional Extension Element - found in all resources.";
case HUMANNAME:
return "A human's name with the ability to identify parts and usage.";
case IDENTIFIER:
return "An identifier - identifies some entity uniquely and unambiguously. Typically this is used for business identifiers.";
case MARKETINGSTATUS:
return "The marketing status describes the date when a medicinal product is actually put on the market or the date as of which it is no longer available.";
case META:
return "The metadata about a resource. This is content in the resource that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.";
case MONEY:
return "An amount of economic utility in some recognized currency.";
case MONEYQUANTITY:
return "";
case NARRATIVE:
return "A human-readable summary of the resource conveying the essential clinical and business information for the resource.";
case PARAMETERDEFINITION:
return "The parameters to the module. This collection specifies both the input and output parameters. Input parameters are provided by the caller as part of the $evaluate operation. Output parameters are included in the GuidanceResponse.";
case PERIOD:
return "A time period defined by a start and end date and optionally time.";
case POPULATION:
return "A populatioof people with some set of grouping criteria.";
case PRODCHARACTERISTIC:
return "The marketing status describes the date when a medicinal product is actually put on the market or the date as of which it is no longer available.";
case PRODUCTSHELFLIFE:
return "The shelf-life and storage information for a medicinal product item or container can be described using this class.";
case QUANTITY:
return "A measured amount (or an amount that can potentially be measured). Note that measured amounts include amounts that are not precisely quantified, including amounts involving arbitrary units and floating currencies.";
case RANGE:
return "A set of ordered Quantities defined by a low and high limit.";
case RATIO:
return "A relationship of two Quantity values - expressed as a numerator and a denominator.";
case REFERENCE:
return "A reference from one resource to another.";
case RELATEDARTIFACT:
return "Related artifacts such as additional documentation, justification, or bibliographic references.";
case SAMPLEDDATA:
return "A series of measurements taken by a device, with upper and lower limits. There may be more than one dimension in the data.";
case SIGNATURE:
return "A signature along with supporting context. The signature may be a digital signature that is cryptographic in nature, or some other signature acceptable to the domain. This other signature may be as simple as a graphical image representing a hand-written signature, or a signature ceremony Different signature approaches have different utilities.";
case SIMPLEQUANTITY:
return "";
case SUBSTANCEAMOUNT:
return "Chemical substances are a single substance type whose primary defining element is the molecular structure. Chemical substances shall be defined on the basis of their complete covalent molecular structure; the presence of a salt (counter-ion) and/or solvates (water, alcohols) is also captured. Purity, grade, physical form or particle size are not taken into account in the definition of a chemical substance or in the assignment of a Substance ID.";
case TIMING:
return "Specifies an event that may occur multiple times. Timing schedules are used to record when things are planned, expected or requested to occur. The most common usage is in dosage instructions for medications. They are also used when planning care of various kinds, and may be used for reporting the schedule to which past regular activities were carried out.";
case TRIGGERDEFINITION:
return "A description of a triggering event. Triggering events can be named events, data events, or periodic, as determined by the type element.";
case USAGECONTEXT:
return "Specifies clinical/business/etc. metadata that can be used to retrieve, index and/or categorize an artifact. This metadata can either be specific to the applicable population (e.g., age category, DRG) or the specific context of care (e.g., venue, care setting, provider of care).";
case BASE64BINARY:
return "A stream of bytes";
case BOOLEAN:
return "Value of \"true\" or \"false\"";
case CANONICAL:
return "A URI that is a reference to a canonical URL on a FHIR resource";
case CODE:
return "A string which has at least one character and no leading or trailing whitespace and where there is no whitespace other than single spaces in the contents";
case DATE:
return "A date or partial date (e.g. just year or year + month). There is no time zone. The format is a union of the schema types gYear, gYearMonth and date. Dates SHALL be valid dates.";
case DATETIME:
return "A date, date-time or partial date (e.g. just year or year + month). If hours and minutes are specified, a time zone SHALL be populated. The format is a union of the schema types gYear, gYearMonth, date and dateTime. Seconds must be provided due to schema type constraints but may be zero-filled and may be ignored. Dates SHALL be valid dates.";
case DECIMAL:
return "A rational number with implicit precision";
case ID:
return "Any combination of letters, numerals, \"-\" and \".\", with a length limit of 64 characters. (This might be an integer, an unprefixed OID, UUID or any other identifier pattern that meets these constraints.) Ids are case-insensitive.";
case INSTANT:
return "An instant in time - known at least to the second";
case INTEGER:
return "A whole number";
case MARKDOWN:
return "A string that may contain Github Flavored Markdown syntax for optional processing by a mark down presentation engine";
case OID:
return "An OID represented as a URI";
case POSITIVEINT:
return "An integer with a value that is positive (e.g. >0)";
case STRING:
return "A sequence of Unicode characters";
case TIME:
return "A time during the day, with no date specified";
case UNSIGNEDINT:
return "An integer with a value that is not negative (e.g. >= 0)";
case URI:
return "String of characters used to identify a name or a resource";
case URL:
return "A URI that is a literal reference";
case UUID:
return "A UUID, represented as a URI";
case XHTML:
return "XHTML format, as defined by W3C, but restricted usage (mainly, no active content)";
case ACCOUNT:
return "A financial tool for tracking value accrued for a particular purpose. In the healthcare field, used to track charges for a patient, cost centers, etc.";
case ACTIVITYDEFINITION:
return "This resource allows for the definition of some activity to be performed, independent of a particular patient, practitioner, or other performance context.";
case ADVERSEEVENT:
return "Actual or potential/avoided event causing unintended physical injury resulting from or contributed to by medical care, a research study or other healthcare setting factors that requires additional monitoring, treatment, or hospitalization, or that results in death.";
case ALLERGYINTOLERANCE:
return "Risk of harmful or undesirable, physiological response which is unique to an individual and associated with exposure to a substance.";
case APPOINTMENT:
return "A booking of a healthcare event among patient(s), practitioner(s), related person(s) and/or device(s) for a specific date/time. This may result in one or more Encounter(s).";
case APPOINTMENTRESPONSE:
return "A reply to an appointment request for a patient and/or practitioner(s), such as a confirmation or rejection.";
case AUDITEVENT:
return "A record of an event made for purposes of maintaining a security log. Typical uses include detection of intrusion attempts and monitoring for inappropriate usage.";
case BASIC:
return "Basic is used for handling concepts not yet defined in FHIR, narrative-only resources that don't map to an existing resource, and custom resources not appropriate for inclusion in the FHIR specification.";
case BINARY:
return "A resource that represents the data of a single raw artifact as digital content accessible in its native format. A Binary resource can contain any content, whether text, image, pdf, zip archive, etc.";
case BIOLOGICALLYDERIVEDPRODUCT:
return "A material substance originating from a biological entity intended to be transplanted or infused\ninto another (possibly the same) biological entity.";
case BODYSTRUCTURE:
return "Record details about an anatomical structure. This resource may be used when a coded concept does not provide the necessary detail needed for the use case.";
case BUNDLE:
return "A container for a collection of resources.";
case CAPABILITYSTATEMENT:
return "A Capability Statement documents a set of capabilities (behaviors) of a FHIR Server for a particular version of FHIR that may be used as a statement of actual server functionality or a statement of required or desired server implementation.";
case CAREPLAN:
return "Describes the intention of how one or more practitioners intend to deliver care for a particular patient, group or community for a period of time, possibly limited to care for a specific condition or set of conditions.";
case CARETEAM:
return "The Care Team includes all the people and organizations who plan to participate in the coordination and delivery of care for a patient.";
case CATALOGENTRY:
return "Catalog entries are wrappers that contextualize items included in a catalog.";
case CHARGEITEM:
return "The resource ChargeItem describes the provision of healthcare provider products for a certain patient, therefore referring not only to the product, but containing in addition details of the provision, like date, time, amounts and participating organizations and persons. Main Usage of the ChargeItem is to enable the billing process and internal cost allocation.";
case CHARGEITEMDEFINITION:
return "The ChargeItemDefinition resource provides the properties that apply to the (billing) codes necessary to calculate costs and prices. The properties may differ largely depending on type and realm, therefore this resource gives only a rough structure and requires profiling for each type of billing code system.";
case CLAIM:
return "A provider issued list of professional services and products which have been provided, or are to be provided, to a patient which is sent to an insurer for reimbursement.";
case CLAIMRESPONSE:
return "This resource provides the adjudication details from the processing of a Claim resource.";
case CLINICALIMPRESSION:
return "A record of a clinical assessment performed to determine what problem(s) may affect the patient and before planning the treatments or management strategies that are best to manage a patient's condition. Assessments are often 1:1 with a clinical consultation / encounter, but this varies greatly depending on the clinical workflow. This resource is called \"ClinicalImpression\" rather than \"ClinicalAssessment\" to avoid confusion with the recording of assessment tools such as Apgar score.";
case CODESYSTEM:
return "The CodeSystem resource is used to declare the existence of and describe a code system or code system supplement and its key properties, and optionally define a part or all of its content.";
case COMMUNICATION:
return "An occurrence of information being transmitted; e.g. an alert that was sent to a responsible provider, a public health agency that was notified about a reportable condition.";
case COMMUNICATIONREQUEST:
return "A request to convey information; e.g. the CDS system proposes that an alert be sent to a responsible provider, the CDS system proposes that the public health agency be notified about a reportable condition.";
case COMPARTMENTDEFINITION:
return "A compartment definition that defines how resources are accessed on a server.";
case COMPOSITION:
return "A set of healthcare-related information that is assembled together into a single logical package that provides a single coherent statement of meaning, establishes its own context and that has clinical attestation with regard to who is making the statement. A Composition defines the structure and narrative content necessary for a document. However, a Composition alone does not constitute a document. Rather, the Composition must be the first entry in a Bundle where Bundle.type=document, and any other resources referenced from Composition must be included as subsequent entries in the Bundle (for example Patient, Practitioner, Encounter, etc.).";
case CONCEPTMAP:
return "A statement of relationships from one set of concepts to one or more other concepts - either concepts in code systems, or data element/data element concepts, or classes in class models.";
case CONDITION:
return "A clinical condition, problem, diagnosis, or other event, situation, issue, or clinical concept that has risen to a level of concern.";
case CONSENT:
return "A record of a healthcare consumer’s choices, which permits or denies identified recipient(s) or recipient role(s) to perform one or more actions within a given policy context, for specific purposes and periods of time.";
case CONTRACT:
return "Legally enforceable, formally recorded unilateral or bilateral directive i.e., a policy or agreement.";
case COVERAGE:
return "Financial instrument which may be used to reimburse or pay for health care products and services. Includes both insurance and self-payment.";
case COVERAGEELIGIBILITYREQUEST:
return "The CoverageEligibilityRequest provides patient and insurance coverage information to an insurer for them to respond, in the form of an CoverageEligibilityResponse, with information regarding whether the stated coverage is valid and in-force and optionally to provide the insurance details of the policy.";
case COVERAGEELIGIBILITYRESPONSE:
return "This resource provides eligibility and plan details from the processing of an CoverageEligibilityRequest resource.";
case DETECTEDISSUE:
return "Indicates an actual or potential clinical issue with or between one or more active or proposed clinical actions for a patient; e.g. Drug-drug interaction, Ineffective treatment frequency, Procedure-condition conflict, etc.";
case DEVICE:
return "A type of a manufactured item that is used in the provision of healthcare without being substantially changed through that activity. The device may be a medical or non-medical device.";
case DEVICEDEFINITION:
return "The characteristics, operational status and capabilities of a medical-related component of a medical device.";
case DEVICEMETRIC:
return "Describes a measurement, calculation or setting capability of a medical device.";
case DEVICEREQUEST:
return "Represents a request for a patient to employ a medical device. The device may be an implantable device, or an external assistive device, such as a walker.";
case DEVICEUSESTATEMENT:
return "A record of a device being used by a patient where the record is the result of a report from the patient or another clinician.";
case DIAGNOSTICREPORT:
return "The findings and interpretation of diagnostic tests performed on patients, groups of patients, devices, and locations, and/or specimens derived from these. The report includes clinical context such as requesting and provider information, and some mix of atomic results, images, textual and coded interpretations, and formatted representation of diagnostic reports.";
case DOCUMENTMANIFEST:
return "A collection of documents compiled for a purpose together with metadata that applies to the collection.";
case DOCUMENTREFERENCE:
return "A reference to a document of any kind for any purpose. Provides metadata about the document so that the document can be discovered and managed. The scope of a document is any seralized object with a mime-type, so includes formal patient centric documents (CDA), cliical notes, scanned paper, and non-patient specific documents like policy text.";
case DOMAINRESOURCE:
return "A resource that includes narrative, extensions, and contained resources.";
case EFFECTEVIDENCESYNTHESIS:
return "The EffectEvidenceSynthesis resource describes the difference in an outcome between exposures states in a population where the effect estimate is derived from a combination of research studies.";
case ENCOUNTER:
return "An interaction between a patient and healthcare provider(s) for the purpose of providing healthcare service(s) or assessing the health status of a patient.";
case ENDPOINT:
return "The technical details of an endpoint that can be used for electronic services, such as for web services providing XDS.b or a REST endpoint for another FHIR server. This may include any security context information.";
case ENROLLMENTREQUEST:
return "This resource provides the insurance enrollment details to the insurer regarding a specified coverage.";
case ENROLLMENTRESPONSE:
return "This resource provides enrollment and plan details from the processing of an EnrollmentRequest resource.";
case EPISODEOFCARE:
return "An association between a patient and an organization / healthcare provider(s) during which time encounters may occur. The managing organization assumes a level of responsibility for the patient during this time.";
case EVENTDEFINITION:
return "The EventDefinition resource provides a reusable description of when a particular event can occur.";
case EVIDENCE:
return "The Evidence resource describes the conditional state (population and any exposures being compared within the population) and outcome (if specified) that the knowledge (evidence, assertion, recommendation) is about.";
case EVIDENCEVARIABLE:
return "The EvidenceVariable resource describes a \"PICO\" element that knowledge (evidence, assertion, recommendation) is about.";
case EXAMPLESCENARIO:
return "Example of workflow instance.";
case EXPLANATIONOFBENEFIT:
return "This resource provides: the claim details; adjudication details from the processing of a Claim; and optionally account balance information, for informing the subscriber of the benefits provided.";
case FAMILYMEMBERHISTORY:
return "Significant health conditions for a person related to the patient relevant in the context of care for the patient.";
case FLAG:
return "Prospective warnings of potential issues when providing care to the patient.";
case GOAL:
return "Describes the intended objective(s) for a patient, group or organization care, for example, weight loss, restoring an activity of daily living, obtaining herd immunity via immunization, meeting a process improvement objective, etc.";
case GRAPHDEFINITION:
return "A formal computable definition of a graph of resources - that is, a coherent set of resources that form a graph by following references. The Graph Definition resource defines a set and makes rules about the set.";
case GROUP:
return "Represents a defined collection of entities that may be discussed or acted upon collectively but which are not expected to act collectively, and are not formally or legally recognized; i.e. a collection of entities that isn't an Organization.";
case GUIDANCERESPONSE:
return "A guidance response is the formal response to a guidance request, including any output parameters returned by the evaluation, as well as the description of any proposed actions to be taken.";
case HEALTHCARESERVICE:
return "The details of a healthcare service available at a location.";
case IMAGINGSTUDY:
return "Representation of the content produced in a DICOM imaging study. A study comprises a set of series, each of which includes a set of Service-Object Pair Instances (SOP Instances - images or other data) acquired or produced in a common context. A series is of only one modality (e.g. X-ray, CT, MR, ultrasound), but a study may have multiple series of different modalities.";
case IMMUNIZATION:
return "Describes the event of a patient being administered a vaccine or a record of an immunization as reported by a patient, a clinician or another party.";
case IMMUNIZATIONEVALUATION:
return "Describes a comparison of an immunization event against published recommendations to determine if the administration is \"valid\" in relation to those recommendations.";
case IMMUNIZATIONRECOMMENDATION:
return "A patient's point-in-time set of recommendations (i.e. forecasting) according to a published schedule with optional supporting justification.";
case IMPLEMENTATIONGUIDE:
return "A set of rules of how a particular interoperability or standards problem is solved - typically through the use of FHIR resources. This resource is used to gather all the parts of an implementation guide into a logical whole and to publish a computable definition of all the parts.";
case INSURANCEPLAN:
return "Details of a Health Insurance product/plan provided by an organization.";
case INVOICE:
return "Invoice containing collected ChargeItems from an Account with calculated individual and total price for Billing purpose.";
case LIBRARY:
return "The Library resource is a general-purpose container for knowledge asset definitions. It can be used to describe and expose existing knowledge assets such as logic libraries and information model descriptions, as well as to describe a collection of knowledge assets.";
case LINKAGE:
return "Identifies two or more records (resource instances) that refer to the same real-world \"occurrence\".";
case LIST:
return "A list is a curated collection of resources.";
case LOCATION:
return "Details and position information for a physical place where services are provided and resources and participants may be stored, found, contained, or accommodated.";
case MEASURE:
return "The Measure resource provides the definition of a quality measure.";
case MEASUREREPORT:
return "The MeasureReport resource contains the results of the calculation of a measure; and optionally a reference to the resources involved in that calculation.";
case MEDIA:
return "A photo, video, or audio recording acquired or used in healthcare. The actual content may be inline or provided by direct reference.";
case MEDICATION:
return "This resource is primarily used for the identification and definition of a medication for the purposes of prescribing, dispensing, and administering a medication as well as for making statements about medication use.";
case MEDICATIONADMINISTRATION:
return "Describes the event of a patient consuming or otherwise being administered a medication. This may be as simple as swallowing a tablet or it may be a long running infusion. Related resources tie this event to the authorizing prescription, and the specific encounter between patient and health care practitioner.";
case MEDICATIONDISPENSE:
return "Indicates that a medication product is to be or has been dispensed for a named person/patient. This includes a description of the medication product (supply) provided and the instructions for administering the medication. The medication dispense is the result of a pharmacy system responding to a medication order.";
case MEDICATIONKNOWLEDGE:
return "Information about a medication that is used to support knowledge.";
case MEDICATIONREQUEST:
return "An order or request for both supply of the medication and the instructions for administration of the medication to a patient. The resource is called \"MedicationRequest\" rather than \"MedicationPrescription\" or \"MedicationOrder\" to generalize the use across inpatient and outpatient settings, including care plans, etc., and to harmonize with workflow patterns.";
case MEDICATIONSTATEMENT:
return "A record of a medication that is being consumed by a patient. A MedicationStatement may indicate that the patient may be taking the medication now or has taken the medication in the past or will be taking the medication in the future. The source of this information can be the patient, significant other (such as a family member or spouse), or a clinician. A common scenario where this information is captured is during the history taking process during a patient visit or stay. The medication information may come from sources such as the patient's memory, from a prescription bottle, or from a list of medications the patient, clinician or other party maintains. \n\nThe primary difference between a medication statement and a medication administration is that the medication administration has complete administration information and is based on actual administration information from the person who administered the medication. A medication statement is often, if not always, less specific. There is no required date/time when the medication was administered, in fact we only know that a source has reported the patient is taking this medication, where details such as time, quantity, or rate or even medication product may be incomplete or missing or less precise. As stated earlier, the medication statement information may come from the patient's memory, from a prescription bottle or from a list of medications the patient, clinician or other party maintains. Medication administration is more formal and is not missing detailed information.";
case MEDICINALPRODUCT:
return "Detailed definition of a medicinal product, typically for uses other than direct patient care (e.g. regulatory use).";
case MEDICINALPRODUCTAUTHORIZATION:
return "The regulatory authorization of a medicinal product.";
case MEDICINALPRODUCTCONTRAINDICATION:
return "The clinical particulars - indications, contraindications etc. of a medicinal product, including for regulatory purposes.";
case MEDICINALPRODUCTINDICATION:
return "Indication for the Medicinal Product.";
case MEDICINALPRODUCTINGREDIENT:
return "An ingredient of a manufactured item or pharmaceutical product.";
case MEDICINALPRODUCTINTERACTION:
return "The interactions of the medicinal product with other medicinal products, or other forms of interactions.";
case MEDICINALPRODUCTMANUFACTURED:
return "The manufactured item as contained in the packaged medicinal product.";
case MEDICINALPRODUCTPACKAGED:
return "A medicinal product in a container or package.";
case MEDICINALPRODUCTPHARMACEUTICAL:
return "A pharmaceutical product described in terms of its composition and dose form.";
case MEDICINALPRODUCTUNDESIRABLEEFFECT:
return "Describe the undesirable effects of the medicinal product.";
case MESSAGEDEFINITION:
return "Defines the characteristics of a message that can be shared between systems, including the type of event that initiates the message, the content to be transmitted and what response(s), if any, are permitted.";
case MESSAGEHEADER:
return "The header for a message exchange that is either requesting or responding to an action. The reference(s) that are the subject of the action as well as other information related to the action are typically transmitted in a bundle in which the MessageHeader resource instance is the first resource in the bundle.";
case MOLECULARSEQUENCE:
return "Raw data describing a biological sequence.";
case NAMINGSYSTEM:
return "A curated namespace that issues unique symbols within that namespace for the identification of concepts, people, devices, etc. Represents a \"System\" used within the Identifier and Coding data types.";
case NUTRITIONORDER:
return "A request to supply a diet, formula feeding (enteral) or oral nutritional supplement to a patient/resident.";
case OBSERVATION:
return "Measurements and simple assertions made about a patient, device or other subject.";
case OBSERVATIONDEFINITION:
return "Set of definitional characteristics for a kind of observation or measurement produced or consumed by an orderable health care service.";
case OPERATIONDEFINITION:
return "A formal computable definition of an operation (on the RESTful interface) or a named query (using the search interaction).";
case OPERATIONOUTCOME:
return "A collection of error, warning, or information messages that result from a system action.";
case ORGANIZATION:
return "A formally or informally recognized grouping of people or organizations formed for the purpose of achieving some form of collective action. Includes companies, institutions, corporations, departments, community groups, healthcare practice groups, payer/insurer, etc.";
case ORGANIZATIONAFFILIATION:
return "Defines an affiliation/assotiation/relationship between 2 distinct oganizations, that is not a part-of relationship/sub-division relationship.";
case PARAMETERS:
return "This resource is a non-persisted resource used to pass information into and back from an [operation](operations.html). It has no other use, and there is no RESTful endpoint associated with it.";
case PATIENT:
return "Demographics and other administrative information about an individual or animal receiving care or other health-related services.";
case PAYMENTNOTICE:
return "This resource provides the status of the payment for goods and services rendered, and the request and response resource references.";
case PAYMENTRECONCILIATION:
return "This resource provides the details including amount of a payment and allocates the payment items being paid.";
case PERSON:
return "Demographics and administrative information about a person independent of a specific health-related context.";
case PLANDEFINITION:
return "This resource allows for the definition of various types of plans as a sharable, consumable, and executable artifact. The resource is general enough to support the description of a broad range of clinical artifacts such as clinical decision support rules, order sets and protocols.";
case PRACTITIONER:
return "A person who is directly or indirectly involved in the provisioning of healthcare.";
case PRACTITIONERROLE:
return "A specific set of Roles/Locations/specialties/services that a practitioner may perform at an organization for a period of time.";
case PROCEDURE:
return "An action that is or was performed on or for a patient. This can be a physical intervention like an operation, or less invasive like long term services, counseling, or hypnotherapy.";
case PROVENANCE:
return "Provenance of a resource is a record that describes entities and processes involved in producing and delivering or otherwise influencing that resource. Provenance provides a critical foundation for assessing authenticity, enabling trust, and allowing reproducibility. Provenance assertions are a form of contextual metadata and can themselves become important records with their own provenance. Provenance statement indicates clinical significance in terms of confidence in authenticity, reliability, and trustworthiness, integrity, and stage in lifecycle (e.g. Document Completion - has the artifact been legally authenticated), all of which may impact security, privacy, and trust policies.";
case QUESTIONNAIRE:
return "A structured set of questions intended to guide the collection of answers from end-users. Questionnaires provide detailed control over order, presentation, phraseology and grouping to allow coherent, consistent data collection.";
case QUESTIONNAIRERESPONSE:
return "A structured set of questions and their answers. The questions are ordered and grouped into coherent subsets, corresponding to the structure of the grouping of the questionnaire being responded to.";
case RELATEDPERSON:
return "Information about a person that is involved in the care for a patient, but who is not the target of healthcare, nor has a formal responsibility in the care process.";
case REQUESTGROUP:
return "A group of related requests that can be used to capture intended activities that have inter-dependencies such as \"give this medication after that one\".";
case RESEARCHDEFINITION:
return "The ResearchDefinition resource describes the conditional state (population and any exposures being compared within the population) and outcome (if specified) that the knowledge (evidence, assertion, recommendation) is about.";
case RESEARCHELEMENTDEFINITION:
return "The ResearchElementDefinition resource describes a \"PICO\" element that knowledge (evidence, assertion, recommendation) is about.";
case RESEARCHSTUDY:
return "A process where a researcher or organization plans and then executes a series of steps intended to increase the field of healthcare-related knowledge. This includes studies of safety, efficacy, comparative effectiveness and other information about medications, devices, therapies and other interventional and investigative techniques. A ResearchStudy involves the gathering of information about human or animal subjects.";
case RESEARCHSUBJECT:
return "A physical entity which is the primary unit of operational and/or administrative interest in a study.";
case RESOURCE:
return "This is the base resource type for everything.";
case RISKASSESSMENT:
return "An assessment of the likely outcome(s) for a patient or other subject as well as the likelihood of each outcome.";
case RISKEVIDENCESYNTHESIS:
return "The RiskEvidenceSynthesis resource describes the likelihood of an outcome in a population plus exposure state where the risk estimate is derived from a combination of research studies.";
case SCHEDULE:
return "A container for slots of time that may be available for booking appointments.";
case SEARCHPARAMETER:
return "A search parameter that defines a named search item that can be used to search/filter on a resource.";
case SERVICEREQUEST:
return "A record of a request for service such as diagnostic investigations, treatments, or operations to be performed.";
case SLOT:
return "A slot of time on a schedule that may be available for booking appointments.";
case SPECIMEN:
return "A sample to be used for analysis.";
case SPECIMENDEFINITION:
return "A kind of specimen with associated set of requirements.";
case STRUCTUREDEFINITION:
return "A definition of a FHIR structure. This resource is used to describe the underlying resources, data types defined in FHIR, and also for describing extensions and constraints on resources and data types.";
case STRUCTUREMAP:
return "A Map of relationships between 2 structures that can be used to transform data.";
case SUBSCRIPTION:
return "The subscription resource is used to define a push-based subscription from a server to another system. Once a subscription is registered with the server, the server checks every resource that is created or updated, and if the resource matches the given criteria, it sends a message on the defined \"channel\" so that another system can take an appropriate action.";
case SUBSTANCE:
return "A homogeneous material with a definite composition.";
case SUBSTANCENUCLEICACID:
return "Nucleic acids are defined by three distinct elements: the base, sugar and linkage. Individual substance/moiety IDs will be created for each of these elements. The nucleotide sequence will be always entered in the 5’-3’ direction.";
case SUBSTANCEPOLYMER:
return "Todo.";
case SUBSTANCEPROTEIN:
return "A SubstanceProtein is defined as a single unit of a linear amino acid sequence, or a combination of subunits that are either covalently linked or have a defined invariant stoichiometric relationship. This includes all synthetic, recombinant and purified SubstanceProteins of defined sequence, whether the use is therapeutic or prophylactic. This set of elements will be used to describe albumins, coagulation factors, cytokines, growth factors, peptide/SubstanceProtein hormones, enzymes, toxins, toxoids, recombinant vaccines, and immunomodulators.";
case SUBSTANCEREFERENCEINFORMATION:
return "Todo.";
case SUBSTANCESOURCEMATERIAL:
return "Source material shall capture information on the taxonomic and anatomical origins as well as the fraction of a material that can result in or can be modified to form a substance. This set of data elements shall be used to define polymer substances isolated from biological matrices. Taxonomic and anatomical origins shall be described using a controlled vocabulary as required. This information is captured for naturally derived polymers ( . starch) and structurally diverse substances. For Organisms belonging to the Kingdom Plantae the Substance level defines the fresh material of a single species or infraspecies, the Herbal Drug and the Herbal preparation. For Herbal preparations, the fraction information will be captured at the Substance information level and additional information for herbal extracts will be captured at the Specified Substance Group 1 information level. See for further explanation the Substance Class: Structurally Diverse and the herbal annex.";
case SUBSTANCESPECIFICATION:
return "The detailed description of a substance, typically at a level beyond what is used for prescribing.";
case SUPPLYDELIVERY:
return "Record of delivery of what is supplied.";
case SUPPLYREQUEST:
return "A record of a request for a medication, substance or device used in the healthcare setting.";
case TASK:
return "A task to be performed.";
case TERMINOLOGYCAPABILITIES:
return "A Terminology Capabilities documents a set of capabilities (behaviors) of a FHIR Server that may be used as a statement of actual server functionality or a statement of required or desired server implementation.";
case TESTREPORT:
return "A summary of information based on the results of executing a TestScript.";
case TESTSCRIPT:
return "A structured set of tests against a FHIR server or client implementation to determine compliance against the FHIR specification.";
case VALUESET:
return "A ValueSet resource instance specifies a set of codes drawn from one or more code systems, intended for use in a particular context. Value sets link between [[[CodeSystem]]] definitions and their use in [coded elements](terminologies.html).";
case VERIFICATIONRESULT:
return "Describes validation requirements, source(s), status and dates for one or more elements.";
case VISIONPRESCRIPTION:
return "An authorization for the provision of glasses and/or contact lenses to a patient.";
case TYPE:
return "A place holder that means any kind of data type";
case ANY:
return "A place holder that means any kind of resource";
case NULL:
return null;
default:
return "?";
}
}
public String getDisplay() {
switch (this) {
case ADDRESS:
return "Address";
case AGE:
return "Age";
case ANNOTATION:
return "Annotation";
case ATTACHMENT:
return "Attachment";
case BACKBONEELEMENT:
return "BackboneElement";
case CODEABLECONCEPT:
return "CodeableConcept";
case CODING:
return "Coding";
case CONTACTDETAIL:
return "ContactDetail";
case CONTACTPOINT:
return "ContactPoint";
case CONTRIBUTOR:
return "Contributor";
case COUNT:
return "Count";
case DATAREQUIREMENT:
return "DataRequirement";
case DISTANCE:
return "Distance";
case DOSAGE:
return "Dosage";
case DURATION:
return "Duration";
case ELEMENT:
return "Element";
case ELEMENTDEFINITION:
return "ElementDefinition";
case EXPRESSION:
return "Expression";
case EXTENSION:
return "Extension";
case HUMANNAME:
return "HumanName";
case IDENTIFIER:
return "Identifier";
case MARKETINGSTATUS:
return "MarketingStatus";
case META:
return "Meta";
case MONEY:
return "Money";
case MONEYQUANTITY:
return "MoneyQuantity";
case NARRATIVE:
return "Narrative";
case PARAMETERDEFINITION:
return "ParameterDefinition";
case PERIOD:
return "Period";
case POPULATION:
return "Population";
case PRODCHARACTERISTIC:
return "ProdCharacteristic";
case PRODUCTSHELFLIFE:
return "ProductShelfLife";
case QUANTITY:
return "Quantity";
case RANGE:
return "Range";
case RATIO:
return "Ratio";
case REFERENCE:
return "Reference";
case RELATEDARTIFACT:
return "RelatedArtifact";
case SAMPLEDDATA:
return "SampledData";
case SIGNATURE:
return "Signature";
case SIMPLEQUANTITY:
return "SimpleQuantity";
case SUBSTANCEAMOUNT:
return "SubstanceAmount";
case TIMING:
return "Timing";
case TRIGGERDEFINITION:
return "TriggerDefinition";
case USAGECONTEXT:
return "UsageContext";
case BASE64BINARY:
return "base64Binary";
case BOOLEAN:
return "boolean";
case CANONICAL:
return "canonical";
case CODE:
return "code";
case DATE:
return "date";
case DATETIME:
return "dateTime";
case DECIMAL:
return "decimal";
case ID:
return "id";
case INSTANT:
return "instant";
case INTEGER:
return "integer";
case MARKDOWN:
return "markdown";
case OID:
return "oid";
case POSITIVEINT:
return "positiveInt";
case STRING:
return "string";
case TIME:
return "time";
case UNSIGNEDINT:
return "unsignedInt";
case URI:
return "uri";
case URL:
return "url";
case UUID:
return "uuid";
case XHTML:
return "XHTML";
case ACCOUNT:
return "Account";
case ACTIVITYDEFINITION:
return "ActivityDefinition";
case ADVERSEEVENT:
return "AdverseEvent";
case ALLERGYINTOLERANCE:
return "AllergyIntolerance";
case APPOINTMENT:
return "Appointment";
case APPOINTMENTRESPONSE:
return "AppointmentResponse";
case AUDITEVENT:
return "AuditEvent";
case BASIC:
return "Basic";
case BINARY:
return "Binary";
case BIOLOGICALLYDERIVEDPRODUCT:
return "BiologicallyDerivedProduct";
case BODYSTRUCTURE:
return "BodyStructure";
case BUNDLE:
return "Bundle";
case CAPABILITYSTATEMENT:
return "CapabilityStatement";
case CAREPLAN:
return "CarePlan";
case CARETEAM:
return "CareTeam";
case CATALOGENTRY:
return "CatalogEntry";
case CHARGEITEM:
return "ChargeItem";
case CHARGEITEMDEFINITION:
return "ChargeItemDefinition";
case CLAIM:
return "Claim";
case CLAIMRESPONSE:
return "ClaimResponse";
case CLINICALIMPRESSION:
return "ClinicalImpression";
case CODESYSTEM:
return "CodeSystem";
case COMMUNICATION:
return "Communication";
case COMMUNICATIONREQUEST:
return "CommunicationRequest";
case COMPARTMENTDEFINITION:
return "CompartmentDefinition";
case COMPOSITION:
return "Composition";
case CONCEPTMAP:
return "ConceptMap";
case CONDITION:
return "Condition";
case CONSENT:
return "Consent";
case CONTRACT:
return "Contract";
case COVERAGE:
return "Coverage";
case COVERAGEELIGIBILITYREQUEST:
return "CoverageEligibilityRequest";
case COVERAGEELIGIBILITYRESPONSE:
return "CoverageEligibilityResponse";
case DETECTEDISSUE:
return "DetectedIssue";
case DEVICE:
return "Device";
case DEVICEDEFINITION:
return "DeviceDefinition";
case DEVICEMETRIC:
return "DeviceMetric";
case DEVICEREQUEST:
return "DeviceRequest";
case DEVICEUSESTATEMENT:
return "DeviceUseStatement";
case DIAGNOSTICREPORT:
return "DiagnosticReport";
case DOCUMENTMANIFEST:
return "DocumentManifest";
case DOCUMENTREFERENCE:
return "DocumentReference";
case DOMAINRESOURCE:
return "DomainResource";
case EFFECTEVIDENCESYNTHESIS:
return "EffectEvidenceSynthesis";
case ENCOUNTER:
return "Encounter";
case ENDPOINT:
return "Endpoint";
case ENROLLMENTREQUEST:
return "EnrollmentRequest";
case ENROLLMENTRESPONSE:
return "EnrollmentResponse";
case EPISODEOFCARE:
return "EpisodeOfCare";
case EVENTDEFINITION:
return "EventDefinition";
case EVIDENCE:
return "Evidence";
case EVIDENCEVARIABLE:
return "EvidenceVariable";
case EXAMPLESCENARIO:
return "ExampleScenario";
case EXPLANATIONOFBENEFIT:
return "ExplanationOfBenefit";
case FAMILYMEMBERHISTORY:
return "FamilyMemberHistory";
case FLAG:
return "Flag";
case GOAL:
return "Goal";
case GRAPHDEFINITION:
return "GraphDefinition";
case GROUP:
return "Group";
case GUIDANCERESPONSE:
return "GuidanceResponse";
case HEALTHCARESERVICE:
return "HealthcareService";
case IMAGINGSTUDY:
return "ImagingStudy";
case IMMUNIZATION:
return "Immunization";
case IMMUNIZATIONEVALUATION:
return "ImmunizationEvaluation";
case IMMUNIZATIONRECOMMENDATION:
return "ImmunizationRecommendation";
case IMPLEMENTATIONGUIDE:
return "ImplementationGuide";
case INSURANCEPLAN:
return "InsurancePlan";
case INVOICE:
return "Invoice";
case LIBRARY:
return "Library";
case LINKAGE:
return "Linkage";
case LIST:
return "List";
case LOCATION:
return "Location";
case MEASURE:
return "Measure";
case MEASUREREPORT:
return "MeasureReport";
case MEDIA:
return "Media";
case MEDICATION:
return "Medication";
case MEDICATIONADMINISTRATION:
return "MedicationAdministration";
case MEDICATIONDISPENSE:
return "MedicationDispense";
case MEDICATIONKNOWLEDGE:
return "MedicationKnowledge";
case MEDICATIONREQUEST:
return "MedicationRequest";
case MEDICATIONSTATEMENT:
return "MedicationStatement";
case MEDICINALPRODUCT:
return "MedicinalProduct";
case MEDICINALPRODUCTAUTHORIZATION:
return "MedicinalProductAuthorization";
case MEDICINALPRODUCTCONTRAINDICATION:
return "MedicinalProductContraindication";
case MEDICINALPRODUCTINDICATION:
return "MedicinalProductIndication";
case MEDICINALPRODUCTINGREDIENT:
return "MedicinalProductIngredient";
case MEDICINALPRODUCTINTERACTION:
return "MedicinalProductInteraction";
case MEDICINALPRODUCTMANUFACTURED:
return "MedicinalProductManufactured";
case MEDICINALPRODUCTPACKAGED:
return "MedicinalProductPackaged";
case MEDICINALPRODUCTPHARMACEUTICAL:
return "MedicinalProductPharmaceutical";
case MEDICINALPRODUCTUNDESIRABLEEFFECT:
return "MedicinalProductUndesirableEffect";
case MESSAGEDEFINITION:
return "MessageDefinition";
case MESSAGEHEADER:
return "MessageHeader";
case MOLECULARSEQUENCE:
return "MolecularSequence";
case NAMINGSYSTEM:
return "NamingSystem";
case NUTRITIONORDER:
return "NutritionOrder";
case OBSERVATION:
return "Observation";
case OBSERVATIONDEFINITION:
return "ObservationDefinition";
case OPERATIONDEFINITION:
return "OperationDefinition";
case OPERATIONOUTCOME:
return "OperationOutcome";
case ORGANIZATION:
return "Organization";
case ORGANIZATIONAFFILIATION:
return "OrganizationAffiliation";
case PARAMETERS:
return "Parameters";
case PATIENT:
return "Patient";
case PAYMENTNOTICE:
return "PaymentNotice";
case PAYMENTRECONCILIATION:
return "PaymentReconciliation";
case PERSON:
return "Person";
case PLANDEFINITION:
return "PlanDefinition";
case PRACTITIONER:
return "Practitioner";
case PRACTITIONERROLE:
return "PractitionerRole";
case PROCEDURE:
return "Procedure";
case PROVENANCE:
return "Provenance";
case QUESTIONNAIRE:
return "Questionnaire";
case QUESTIONNAIRERESPONSE:
return "QuestionnaireResponse";
case RELATEDPERSON:
return "RelatedPerson";
case REQUESTGROUP:
return "RequestGroup";
case RESEARCHDEFINITION:
return "ResearchDefinition";
case RESEARCHELEMENTDEFINITION:
return "ResearchElementDefinition";
case RESEARCHSTUDY:
return "ResearchStudy";
case RESEARCHSUBJECT:
return "ResearchSubject";
case RESOURCE:
return "Resource";
case RISKASSESSMENT:
return "RiskAssessment";
case RISKEVIDENCESYNTHESIS:
return "RiskEvidenceSynthesis";
case SCHEDULE:
return "Schedule";
case SEARCHPARAMETER:
return "SearchParameter";
case SERVICEREQUEST:
return "ServiceRequest";
case SLOT:
return "Slot";
case SPECIMEN:
return "Specimen";
case SPECIMENDEFINITION:
return "SpecimenDefinition";
case STRUCTUREDEFINITION:
return "StructureDefinition";
case STRUCTUREMAP:
return "StructureMap";
case SUBSCRIPTION:
return "Subscription";
case SUBSTANCE:
return "Substance";
case SUBSTANCENUCLEICACID:
return "SubstanceNucleicAcid";
case SUBSTANCEPOLYMER:
return "SubstancePolymer";
case SUBSTANCEPROTEIN:
return "SubstanceProtein";
case SUBSTANCEREFERENCEINFORMATION:
return "SubstanceReferenceInformation";
case SUBSTANCESOURCEMATERIAL:
return "SubstanceSourceMaterial";
case SUBSTANCESPECIFICATION:
return "SubstanceSpecification";
case SUPPLYDELIVERY:
return "SupplyDelivery";
case SUPPLYREQUEST:
return "SupplyRequest";
case TASK:
return "Task";
case TERMINOLOGYCAPABILITIES:
return "TerminologyCapabilities";
case TESTREPORT:
return "TestReport";
case TESTSCRIPT:
return "TestScript";
case VALUESET:
return "ValueSet";
case VERIFICATIONRESULT:
return "VerificationResult";
case VISIONPRESCRIPTION:
return "VisionPrescription";
case TYPE:
return "Type";
case ANY:
return "Any";
case NULL:
return null;
default:
return "?";
}
}
}
public static class FHIRAllTypesEnumFactory implements EnumFactory {
public FHIRAllTypes fromCode(String codeString) throws IllegalArgumentException {
if (codeString == null || "".equals(codeString))
if (codeString == null || "".equals(codeString))
return null;
if ("Address".equals(codeString))
return FHIRAllTypes.ADDRESS;
if ("Age".equals(codeString))
return FHIRAllTypes.AGE;
if ("Annotation".equals(codeString))
return FHIRAllTypes.ANNOTATION;
if ("Attachment".equals(codeString))
return FHIRAllTypes.ATTACHMENT;
if ("BackboneElement".equals(codeString))
return FHIRAllTypes.BACKBONEELEMENT;
if ("CodeableConcept".equals(codeString))
return FHIRAllTypes.CODEABLECONCEPT;
if ("Coding".equals(codeString))
return FHIRAllTypes.CODING;
if ("ContactDetail".equals(codeString))
return FHIRAllTypes.CONTACTDETAIL;
if ("ContactPoint".equals(codeString))
return FHIRAllTypes.CONTACTPOINT;
if ("Contributor".equals(codeString))
return FHIRAllTypes.CONTRIBUTOR;
if ("Count".equals(codeString))
return FHIRAllTypes.COUNT;
if ("DataRequirement".equals(codeString))
return FHIRAllTypes.DATAREQUIREMENT;
if ("Distance".equals(codeString))
return FHIRAllTypes.DISTANCE;
if ("Dosage".equals(codeString))
return FHIRAllTypes.DOSAGE;
if ("Duration".equals(codeString))
return FHIRAllTypes.DURATION;
if ("Element".equals(codeString))
return FHIRAllTypes.ELEMENT;
if ("ElementDefinition".equals(codeString))
return FHIRAllTypes.ELEMENTDEFINITION;
if ("Expression".equals(codeString))
return FHIRAllTypes.EXPRESSION;
if ("Extension".equals(codeString))
return FHIRAllTypes.EXTENSION;
if ("HumanName".equals(codeString))
return FHIRAllTypes.HUMANNAME;
if ("Identifier".equals(codeString))
return FHIRAllTypes.IDENTIFIER;
if ("MarketingStatus".equals(codeString))
return FHIRAllTypes.MARKETINGSTATUS;
if ("Meta".equals(codeString))
return FHIRAllTypes.META;
if ("Money".equals(codeString))
return FHIRAllTypes.MONEY;
if ("MoneyQuantity".equals(codeString))
return FHIRAllTypes.MONEYQUANTITY;
if ("Narrative".equals(codeString))
return FHIRAllTypes.NARRATIVE;
if ("ParameterDefinition".equals(codeString))
return FHIRAllTypes.PARAMETERDEFINITION;
if ("Period".equals(codeString))
return FHIRAllTypes.PERIOD;
if ("Population".equals(codeString))
return FHIRAllTypes.POPULATION;
if ("ProdCharacteristic".equals(codeString))
return FHIRAllTypes.PRODCHARACTERISTIC;
if ("ProductShelfLife".equals(codeString))
return FHIRAllTypes.PRODUCTSHELFLIFE;
if ("Quantity".equals(codeString))
return FHIRAllTypes.QUANTITY;
if ("Range".equals(codeString))
return FHIRAllTypes.RANGE;
if ("Ratio".equals(codeString))
return FHIRAllTypes.RATIO;
if ("Reference".equals(codeString))
return FHIRAllTypes.REFERENCE;
if ("RelatedArtifact".equals(codeString))
return FHIRAllTypes.RELATEDARTIFACT;
if ("SampledData".equals(codeString))
return FHIRAllTypes.SAMPLEDDATA;
if ("Signature".equals(codeString))
return FHIRAllTypes.SIGNATURE;
if ("SimpleQuantity".equals(codeString))
return FHIRAllTypes.SIMPLEQUANTITY;
if ("SubstanceAmount".equals(codeString))
return FHIRAllTypes.SUBSTANCEAMOUNT;
if ("Timing".equals(codeString))
return FHIRAllTypes.TIMING;
if ("TriggerDefinition".equals(codeString))
return FHIRAllTypes.TRIGGERDEFINITION;
if ("UsageContext".equals(codeString))
return FHIRAllTypes.USAGECONTEXT;
if ("base64Binary".equals(codeString))
return FHIRAllTypes.BASE64BINARY;
if ("boolean".equals(codeString))
return FHIRAllTypes.BOOLEAN;
if ("canonical".equals(codeString))
return FHIRAllTypes.CANONICAL;
if ("code".equals(codeString))
return FHIRAllTypes.CODE;
if ("date".equals(codeString))
return FHIRAllTypes.DATE;
if ("dateTime".equals(codeString))
return FHIRAllTypes.DATETIME;
if ("decimal".equals(codeString))
return FHIRAllTypes.DECIMAL;
if ("id".equals(codeString))
return FHIRAllTypes.ID;
if ("instant".equals(codeString))
return FHIRAllTypes.INSTANT;
if ("integer".equals(codeString))
return FHIRAllTypes.INTEGER;
if ("markdown".equals(codeString))
return FHIRAllTypes.MARKDOWN;
if ("oid".equals(codeString))
return FHIRAllTypes.OID;
if ("positiveInt".equals(codeString))
return FHIRAllTypes.POSITIVEINT;
if ("string".equals(codeString))
return FHIRAllTypes.STRING;
if ("time".equals(codeString))
return FHIRAllTypes.TIME;
if ("unsignedInt".equals(codeString))
return FHIRAllTypes.UNSIGNEDINT;
if ("uri".equals(codeString))
return FHIRAllTypes.URI;
if ("url".equals(codeString))
return FHIRAllTypes.URL;
if ("uuid".equals(codeString))
return FHIRAllTypes.UUID;
if ("xhtml".equals(codeString))
return FHIRAllTypes.XHTML;
if ("Account".equals(codeString))
return FHIRAllTypes.ACCOUNT;
if ("ActivityDefinition".equals(codeString))
return FHIRAllTypes.ACTIVITYDEFINITION;
if ("AdverseEvent".equals(codeString))
return FHIRAllTypes.ADVERSEEVENT;
if ("AllergyIntolerance".equals(codeString))
return FHIRAllTypes.ALLERGYINTOLERANCE;
if ("Appointment".equals(codeString))
return FHIRAllTypes.APPOINTMENT;
if ("AppointmentResponse".equals(codeString))
return FHIRAllTypes.APPOINTMENTRESPONSE;
if ("AuditEvent".equals(codeString))
return FHIRAllTypes.AUDITEVENT;
if ("Basic".equals(codeString))
return FHIRAllTypes.BASIC;
if ("Binary".equals(codeString))
return FHIRAllTypes.BINARY;
if ("BiologicallyDerivedProduct".equals(codeString))
return FHIRAllTypes.BIOLOGICALLYDERIVEDPRODUCT;
if ("BodyStructure".equals(codeString))
return FHIRAllTypes.BODYSTRUCTURE;
if ("Bundle".equals(codeString))
return FHIRAllTypes.BUNDLE;
if ("CapabilityStatement".equals(codeString))
return FHIRAllTypes.CAPABILITYSTATEMENT;
if ("CarePlan".equals(codeString))
return FHIRAllTypes.CAREPLAN;
if ("CareTeam".equals(codeString))
return FHIRAllTypes.CARETEAM;
if ("CatalogEntry".equals(codeString))
return FHIRAllTypes.CATALOGENTRY;
if ("ChargeItem".equals(codeString))
return FHIRAllTypes.CHARGEITEM;
if ("ChargeItemDefinition".equals(codeString))
return FHIRAllTypes.CHARGEITEMDEFINITION;
if ("Claim".equals(codeString))
return FHIRAllTypes.CLAIM;
if ("ClaimResponse".equals(codeString))
return FHIRAllTypes.CLAIMRESPONSE;
if ("ClinicalImpression".equals(codeString))
return FHIRAllTypes.CLINICALIMPRESSION;
if ("CodeSystem".equals(codeString))
return FHIRAllTypes.CODESYSTEM;
if ("Communication".equals(codeString))
return FHIRAllTypes.COMMUNICATION;
if ("CommunicationRequest".equals(codeString))
return FHIRAllTypes.COMMUNICATIONREQUEST;
if ("CompartmentDefinition".equals(codeString))
return FHIRAllTypes.COMPARTMENTDEFINITION;
if ("Composition".equals(codeString))
return FHIRAllTypes.COMPOSITION;
if ("ConceptMap".equals(codeString))
return FHIRAllTypes.CONCEPTMAP;
if ("Condition".equals(codeString))
return FHIRAllTypes.CONDITION;
if ("Consent".equals(codeString))
return FHIRAllTypes.CONSENT;
if ("Contract".equals(codeString))
return FHIRAllTypes.CONTRACT;
if ("Coverage".equals(codeString))
return FHIRAllTypes.COVERAGE;
if ("CoverageEligibilityRequest".equals(codeString))
return FHIRAllTypes.COVERAGEELIGIBILITYREQUEST;
if ("CoverageEligibilityResponse".equals(codeString))
return FHIRAllTypes.COVERAGEELIGIBILITYRESPONSE;
if ("DetectedIssue".equals(codeString))
return FHIRAllTypes.DETECTEDISSUE;
if ("Device".equals(codeString))
return FHIRAllTypes.DEVICE;
if ("DeviceDefinition".equals(codeString))
return FHIRAllTypes.DEVICEDEFINITION;
if ("DeviceMetric".equals(codeString))
return FHIRAllTypes.DEVICEMETRIC;
if ("DeviceRequest".equals(codeString))
return FHIRAllTypes.DEVICEREQUEST;
if ("DeviceUseStatement".equals(codeString))
return FHIRAllTypes.DEVICEUSESTATEMENT;
if ("DiagnosticReport".equals(codeString))
return FHIRAllTypes.DIAGNOSTICREPORT;
if ("DocumentManifest".equals(codeString))
return FHIRAllTypes.DOCUMENTMANIFEST;
if ("DocumentReference".equals(codeString))
return FHIRAllTypes.DOCUMENTREFERENCE;
if ("DomainResource".equals(codeString))
return FHIRAllTypes.DOMAINRESOURCE;
if ("EffectEvidenceSynthesis".equals(codeString))
return FHIRAllTypes.EFFECTEVIDENCESYNTHESIS;
if ("Encounter".equals(codeString))
return FHIRAllTypes.ENCOUNTER;
if ("Endpoint".equals(codeString))
return FHIRAllTypes.ENDPOINT;
if ("EnrollmentRequest".equals(codeString))
return FHIRAllTypes.ENROLLMENTREQUEST;
if ("EnrollmentResponse".equals(codeString))
return FHIRAllTypes.ENROLLMENTRESPONSE;
if ("EpisodeOfCare".equals(codeString))
return FHIRAllTypes.EPISODEOFCARE;
if ("EventDefinition".equals(codeString))
return FHIRAllTypes.EVENTDEFINITION;
if ("Evidence".equals(codeString))
return FHIRAllTypes.EVIDENCE;
if ("EvidenceVariable".equals(codeString))
return FHIRAllTypes.EVIDENCEVARIABLE;
if ("ExampleScenario".equals(codeString))
return FHIRAllTypes.EXAMPLESCENARIO;
if ("ExplanationOfBenefit".equals(codeString))
return FHIRAllTypes.EXPLANATIONOFBENEFIT;
if ("FamilyMemberHistory".equals(codeString))
return FHIRAllTypes.FAMILYMEMBERHISTORY;
if ("Flag".equals(codeString))
return FHIRAllTypes.FLAG;
if ("Goal".equals(codeString))
return FHIRAllTypes.GOAL;
if ("GraphDefinition".equals(codeString))
return FHIRAllTypes.GRAPHDEFINITION;
if ("Group".equals(codeString))
return FHIRAllTypes.GROUP;
if ("GuidanceResponse".equals(codeString))
return FHIRAllTypes.GUIDANCERESPONSE;
if ("HealthcareService".equals(codeString))
return FHIRAllTypes.HEALTHCARESERVICE;
if ("ImagingStudy".equals(codeString))
return FHIRAllTypes.IMAGINGSTUDY;
if ("Immunization".equals(codeString))
return FHIRAllTypes.IMMUNIZATION;
if ("ImmunizationEvaluation".equals(codeString))
return FHIRAllTypes.IMMUNIZATIONEVALUATION;
if ("ImmunizationRecommendation".equals(codeString))
return FHIRAllTypes.IMMUNIZATIONRECOMMENDATION;
if ("ImplementationGuide".equals(codeString))
return FHIRAllTypes.IMPLEMENTATIONGUIDE;
if ("InsurancePlan".equals(codeString))
return FHIRAllTypes.INSURANCEPLAN;
if ("Invoice".equals(codeString))
return FHIRAllTypes.INVOICE;
if ("Library".equals(codeString))
return FHIRAllTypes.LIBRARY;
if ("Linkage".equals(codeString))
return FHIRAllTypes.LINKAGE;
if ("List".equals(codeString))
return FHIRAllTypes.LIST;
if ("Location".equals(codeString))
return FHIRAllTypes.LOCATION;
if ("Measure".equals(codeString))
return FHIRAllTypes.MEASURE;
if ("MeasureReport".equals(codeString))
return FHIRAllTypes.MEASUREREPORT;
if ("Media".equals(codeString))
return FHIRAllTypes.MEDIA;
if ("Medication".equals(codeString))
return FHIRAllTypes.MEDICATION;
if ("MedicationAdministration".equals(codeString))
return FHIRAllTypes.MEDICATIONADMINISTRATION;
if ("MedicationDispense".equals(codeString))
return FHIRAllTypes.MEDICATIONDISPENSE;
if ("MedicationKnowledge".equals(codeString))
return FHIRAllTypes.MEDICATIONKNOWLEDGE;
if ("MedicationRequest".equals(codeString))
return FHIRAllTypes.MEDICATIONREQUEST;
if ("MedicationStatement".equals(codeString))
return FHIRAllTypes.MEDICATIONSTATEMENT;
if ("MedicinalProduct".equals(codeString))
return FHIRAllTypes.MEDICINALPRODUCT;
if ("MedicinalProductAuthorization".equals(codeString))
return FHIRAllTypes.MEDICINALPRODUCTAUTHORIZATION;
if ("MedicinalProductContraindication".equals(codeString))
return FHIRAllTypes.MEDICINALPRODUCTCONTRAINDICATION;
if ("MedicinalProductIndication".equals(codeString))
return FHIRAllTypes.MEDICINALPRODUCTINDICATION;
if ("MedicinalProductIngredient".equals(codeString))
return FHIRAllTypes.MEDICINALPRODUCTINGREDIENT;
if ("MedicinalProductInteraction".equals(codeString))
return FHIRAllTypes.MEDICINALPRODUCTINTERACTION;
if ("MedicinalProductManufactured".equals(codeString))
return FHIRAllTypes.MEDICINALPRODUCTMANUFACTURED;
if ("MedicinalProductPackaged".equals(codeString))
return FHIRAllTypes.MEDICINALPRODUCTPACKAGED;
if ("MedicinalProductPharmaceutical".equals(codeString))
return FHIRAllTypes.MEDICINALPRODUCTPHARMACEUTICAL;
if ("MedicinalProductUndesirableEffect".equals(codeString))
return FHIRAllTypes.MEDICINALPRODUCTUNDESIRABLEEFFECT;
if ("MessageDefinition".equals(codeString))
return FHIRAllTypes.MESSAGEDEFINITION;
if ("MessageHeader".equals(codeString))
return FHIRAllTypes.MESSAGEHEADER;
if ("MolecularSequence".equals(codeString))
return FHIRAllTypes.MOLECULARSEQUENCE;
if ("NamingSystem".equals(codeString))
return FHIRAllTypes.NAMINGSYSTEM;
if ("NutritionOrder".equals(codeString))
return FHIRAllTypes.NUTRITIONORDER;
if ("Observation".equals(codeString))
return FHIRAllTypes.OBSERVATION;
if ("ObservationDefinition".equals(codeString))
return FHIRAllTypes.OBSERVATIONDEFINITION;
if ("OperationDefinition".equals(codeString))
return FHIRAllTypes.OPERATIONDEFINITION;
if ("OperationOutcome".equals(codeString))
return FHIRAllTypes.OPERATIONOUTCOME;
if ("Organization".equals(codeString))
return FHIRAllTypes.ORGANIZATION;
if ("OrganizationAffiliation".equals(codeString))
return FHIRAllTypes.ORGANIZATIONAFFILIATION;
if ("Parameters".equals(codeString))
return FHIRAllTypes.PARAMETERS;
if ("Patient".equals(codeString))
return FHIRAllTypes.PATIENT;
if ("PaymentNotice".equals(codeString))
return FHIRAllTypes.PAYMENTNOTICE;
if ("PaymentReconciliation".equals(codeString))
return FHIRAllTypes.PAYMENTRECONCILIATION;
if ("Person".equals(codeString))
return FHIRAllTypes.PERSON;
if ("PlanDefinition".equals(codeString))
return FHIRAllTypes.PLANDEFINITION;
if ("Practitioner".equals(codeString))
return FHIRAllTypes.PRACTITIONER;
if ("PractitionerRole".equals(codeString))
return FHIRAllTypes.PRACTITIONERROLE;
if ("Procedure".equals(codeString))
return FHIRAllTypes.PROCEDURE;
if ("Provenance".equals(codeString))
return FHIRAllTypes.PROVENANCE;
if ("Questionnaire".equals(codeString))
return FHIRAllTypes.QUESTIONNAIRE;
if ("QuestionnaireResponse".equals(codeString))
return FHIRAllTypes.QUESTIONNAIRERESPONSE;
if ("RelatedPerson".equals(codeString))
return FHIRAllTypes.RELATEDPERSON;
if ("RequestGroup".equals(codeString))
return FHIRAllTypes.REQUESTGROUP;
if ("ResearchDefinition".equals(codeString))
return FHIRAllTypes.RESEARCHDEFINITION;
if ("ResearchElementDefinition".equals(codeString))
return FHIRAllTypes.RESEARCHELEMENTDEFINITION;
if ("ResearchStudy".equals(codeString))
return FHIRAllTypes.RESEARCHSTUDY;
if ("ResearchSubject".equals(codeString))
return FHIRAllTypes.RESEARCHSUBJECT;
if ("Resource".equals(codeString))
return FHIRAllTypes.RESOURCE;
if ("RiskAssessment".equals(codeString))
return FHIRAllTypes.RISKASSESSMENT;
if ("RiskEvidenceSynthesis".equals(codeString))
return FHIRAllTypes.RISKEVIDENCESYNTHESIS;
if ("Schedule".equals(codeString))
return FHIRAllTypes.SCHEDULE;
if ("SearchParameter".equals(codeString))
return FHIRAllTypes.SEARCHPARAMETER;
if ("ServiceRequest".equals(codeString))
return FHIRAllTypes.SERVICEREQUEST;
if ("Slot".equals(codeString))
return FHIRAllTypes.SLOT;
if ("Specimen".equals(codeString))
return FHIRAllTypes.SPECIMEN;
if ("SpecimenDefinition".equals(codeString))
return FHIRAllTypes.SPECIMENDEFINITION;
if ("StructureDefinition".equals(codeString))
return FHIRAllTypes.STRUCTUREDEFINITION;
if ("StructureMap".equals(codeString))
return FHIRAllTypes.STRUCTUREMAP;
if ("Subscription".equals(codeString))
return FHIRAllTypes.SUBSCRIPTION;
if ("Substance".equals(codeString))
return FHIRAllTypes.SUBSTANCE;
if ("SubstanceNucleicAcid".equals(codeString))
return FHIRAllTypes.SUBSTANCENUCLEICACID;
if ("SubstancePolymer".equals(codeString))
return FHIRAllTypes.SUBSTANCEPOLYMER;
if ("SubstanceProtein".equals(codeString))
return FHIRAllTypes.SUBSTANCEPROTEIN;
if ("SubstanceReferenceInformation".equals(codeString))
return FHIRAllTypes.SUBSTANCEREFERENCEINFORMATION;
if ("SubstanceSourceMaterial".equals(codeString))
return FHIRAllTypes.SUBSTANCESOURCEMATERIAL;
if ("SubstanceSpecification".equals(codeString))
return FHIRAllTypes.SUBSTANCESPECIFICATION;
if ("SupplyDelivery".equals(codeString))
return FHIRAllTypes.SUPPLYDELIVERY;
if ("SupplyRequest".equals(codeString))
return FHIRAllTypes.SUPPLYREQUEST;
if ("Task".equals(codeString))
return FHIRAllTypes.TASK;
if ("TerminologyCapabilities".equals(codeString))
return FHIRAllTypes.TERMINOLOGYCAPABILITIES;
if ("TestReport".equals(codeString))
return FHIRAllTypes.TESTREPORT;
if ("TestScript".equals(codeString))
return FHIRAllTypes.TESTSCRIPT;
if ("ValueSet".equals(codeString))
return FHIRAllTypes.VALUESET;
if ("VerificationResult".equals(codeString))
return FHIRAllTypes.VERIFICATIONRESULT;
if ("VisionPrescription".equals(codeString))
return FHIRAllTypes.VISIONPRESCRIPTION;
if ("Type".equals(codeString))
return FHIRAllTypes.TYPE;
if ("Any".equals(codeString))
return FHIRAllTypes.ANY;
throw new IllegalArgumentException("Unknown FHIRAllTypes code '" + codeString + "'");
}
public Enumeration fromType(PrimitiveType> code) throws FHIRException {
if (code == null)
return null;
if (code.isEmpty())
return new Enumeration(this, FHIRAllTypes.NULL, code);
String codeString = code.asStringValue();
if (codeString == null || "".equals(codeString))
return new Enumeration(this, FHIRAllTypes.NULL, code);
if ("Address".equals(codeString))
return new Enumeration(this, FHIRAllTypes.ADDRESS, code);
if ("Age".equals(codeString))
return new Enumeration(this, FHIRAllTypes.AGE, code);
if ("Annotation".equals(codeString))
return new Enumeration(this, FHIRAllTypes.ANNOTATION, code);
if ("Attachment".equals(codeString))
return new Enumeration(this, FHIRAllTypes.ATTACHMENT, code);
if ("BackboneElement".equals(codeString))
return new Enumeration(this, FHIRAllTypes.BACKBONEELEMENT, code);
if ("CodeableConcept".equals(codeString))
return new Enumeration(this, FHIRAllTypes.CODEABLECONCEPT, code);
if ("Coding".equals(codeString))
return new Enumeration(this, FHIRAllTypes.CODING, code);
if ("ContactDetail".equals(codeString))
return new Enumeration(this, FHIRAllTypes.CONTACTDETAIL, code);
if ("ContactPoint".equals(codeString))
return new Enumeration(this, FHIRAllTypes.CONTACTPOINT, code);
if ("Contributor".equals(codeString))
return new Enumeration(this, FHIRAllTypes.CONTRIBUTOR, code);
if ("Count".equals(codeString))
return new Enumeration(this, FHIRAllTypes.COUNT, code);
if ("DataRequirement".equals(codeString))
return new Enumeration(this, FHIRAllTypes.DATAREQUIREMENT, code);
if ("Distance".equals(codeString))
return new Enumeration(this, FHIRAllTypes.DISTANCE, code);
if ("Dosage".equals(codeString))
return new Enumeration(this, FHIRAllTypes.DOSAGE, code);
if ("Duration".equals(codeString))
return new Enumeration(this, FHIRAllTypes.DURATION, code);
if ("Element".equals(codeString))
return new Enumeration(this, FHIRAllTypes.ELEMENT, code);
if ("ElementDefinition".equals(codeString))
return new Enumeration(this, FHIRAllTypes.ELEMENTDEFINITION, code);
if ("Expression".equals(codeString))
return new Enumeration(this, FHIRAllTypes.EXPRESSION, code);
if ("Extension".equals(codeString))
return new Enumeration(this, FHIRAllTypes.EXTENSION, code);
if ("HumanName".equals(codeString))
return new Enumeration(this, FHIRAllTypes.HUMANNAME, code);
if ("Identifier".equals(codeString))
return new Enumeration(this, FHIRAllTypes.IDENTIFIER, code);
if ("MarketingStatus".equals(codeString))
return new Enumeration(this, FHIRAllTypes.MARKETINGSTATUS, code);
if ("Meta".equals(codeString))
return new Enumeration(this, FHIRAllTypes.META, code);
if ("Money".equals(codeString))
return new Enumeration(this, FHIRAllTypes.MONEY, code);
if ("MoneyQuantity".equals(codeString))
return new Enumeration(this, FHIRAllTypes.MONEYQUANTITY, code);
if ("Narrative".equals(codeString))
return new Enumeration(this, FHIRAllTypes.NARRATIVE, code);
if ("ParameterDefinition".equals(codeString))
return new Enumeration(this, FHIRAllTypes.PARAMETERDEFINITION, code);
if ("Period".equals(codeString))
return new Enumeration(this, FHIRAllTypes.PERIOD, code);
if ("Population".equals(codeString))
return new Enumeration(this, FHIRAllTypes.POPULATION, code);
if ("ProdCharacteristic".equals(codeString))
return new Enumeration(this, FHIRAllTypes.PRODCHARACTERISTIC, code);
if ("ProductShelfLife".equals(codeString))
return new Enumeration(this, FHIRAllTypes.PRODUCTSHELFLIFE, code);
if ("Quantity".equals(codeString))
return new Enumeration(this, FHIRAllTypes.QUANTITY, code);
if ("Range".equals(codeString))
return new Enumeration(this, FHIRAllTypes.RANGE, code);
if ("Ratio".equals(codeString))
return new Enumeration(this, FHIRAllTypes.RATIO, code);
if ("Reference".equals(codeString))
return new Enumeration(this, FHIRAllTypes.REFERENCE, code);
if ("RelatedArtifact".equals(codeString))
return new Enumeration(this, FHIRAllTypes.RELATEDARTIFACT, code);
if ("SampledData".equals(codeString))
return new Enumeration(this, FHIRAllTypes.SAMPLEDDATA, code);
if ("Signature".equals(codeString))
return new Enumeration(this, FHIRAllTypes.SIGNATURE, code);
if ("SimpleQuantity".equals(codeString))
return new Enumeration(this, FHIRAllTypes.SIMPLEQUANTITY, code);
if ("SubstanceAmount".equals(codeString))
return new Enumeration(this, FHIRAllTypes.SUBSTANCEAMOUNT, code);
if ("Timing".equals(codeString))
return new Enumeration(this, FHIRAllTypes.TIMING, code);
if ("TriggerDefinition".equals(codeString))
return new Enumeration(this, FHIRAllTypes.TRIGGERDEFINITION, code);
if ("UsageContext".equals(codeString))
return new Enumeration(this, FHIRAllTypes.USAGECONTEXT, code);
if ("base64Binary".equals(codeString))
return new Enumeration(this, FHIRAllTypes.BASE64BINARY, code);
if ("boolean".equals(codeString))
return new Enumeration(this, FHIRAllTypes.BOOLEAN, code);
if ("canonical".equals(codeString))
return new Enumeration(this, FHIRAllTypes.CANONICAL, code);
if ("code".equals(codeString))
return new Enumeration(this, FHIRAllTypes.CODE, code);
if ("date".equals(codeString))
return new Enumeration(this, FHIRAllTypes.DATE, code);
if ("dateTime".equals(codeString))
return new Enumeration(this, FHIRAllTypes.DATETIME, code);
if ("decimal".equals(codeString))
return new Enumeration(this, FHIRAllTypes.DECIMAL, code);
if ("id".equals(codeString))
return new Enumeration(this, FHIRAllTypes.ID, code);
if ("instant".equals(codeString))
return new Enumeration(this, FHIRAllTypes.INSTANT, code);
if ("integer".equals(codeString))
return new Enumeration(this, FHIRAllTypes.INTEGER, code);
if ("markdown".equals(codeString))
return new Enumeration(this, FHIRAllTypes.MARKDOWN, code);
if ("oid".equals(codeString))
return new Enumeration(this, FHIRAllTypes.OID, code);
if ("positiveInt".equals(codeString))
return new Enumeration(this, FHIRAllTypes.POSITIVEINT, code);
if ("string".equals(codeString))
return new Enumeration(this, FHIRAllTypes.STRING, code);
if ("time".equals(codeString))
return new Enumeration(this, FHIRAllTypes.TIME, code);
if ("unsignedInt".equals(codeString))
return new Enumeration(this, FHIRAllTypes.UNSIGNEDINT, code);
if ("uri".equals(codeString))
return new Enumeration