Merge pull request #434 from hapifhir/gg-2021-feb-1

Gg 2021 feb 1
This commit is contained in:
Grahame Grieve 2021-02-08 13:28:31 +11:00 committed by GitHub
commit 82edacbde4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2272 changed files with 9720 additions and 53 deletions

View File

@ -74,6 +74,7 @@ public class Account extends DomainResource {
switch (this) {
case ACTIVE: return "active";
case INACTIVE: return "inactive";
case NULL: return null;
default: return "?";
}
}
@ -81,6 +82,7 @@ public class Account extends DomainResource {
switch (this) {
case ACTIVE: return "http://hl7.org/fhir/account-status";
case INACTIVE: return "http://hl7.org/fhir/account-status";
case NULL: return null;
default: return "?";
}
}
@ -88,6 +90,7 @@ public class Account extends DomainResource {
switch (this) {
case ACTIVE: return "This account is active and may be used.";
case INACTIVE: return "This account is inactive and should not be used to track financial information.";
case NULL: return null;
default: return "?";
}
}
@ -95,6 +98,7 @@ public class Account extends DomainResource {
switch (this) {
case ACTIVE: return "Active";
case INACTIVE: return "Inactive";
case NULL: return null;
default: return "?";
}
}

View File

@ -88,6 +88,7 @@ public class Address extends Type implements ICompositeType {
case WORK: return "work";
case TEMP: return "temp";
case OLD: return "old";
case NULL: return null;
default: return "?";
}
}
@ -97,6 +98,7 @@ public class Address extends Type implements ICompositeType {
case WORK: return "http://hl7.org/fhir/address-use";
case TEMP: return "http://hl7.org/fhir/address-use";
case OLD: return "http://hl7.org/fhir/address-use";
case NULL: return null;
default: return "?";
}
}
@ -106,6 +108,7 @@ public class Address extends Type implements ICompositeType {
case WORK: return "An office address. First choice for business related contacts during business hours.";
case TEMP: return "A temporary address. The period can provide more detailed information.";
case OLD: return "This address is no longer in use (or was never correct, but retained for records).";
case NULL: return null;
default: return "?";
}
}
@ -115,6 +118,7 @@ public class Address extends Type implements ICompositeType {
case WORK: return "Work";
case TEMP: return "Temporary";
case OLD: return "Old / Incorrect";
case NULL: return null;
default: return "?";
}
}
@ -197,6 +201,7 @@ public class Address extends Type implements ICompositeType {
case POSTAL: return "postal";
case PHYSICAL: return "physical";
case BOTH: return "both";
case NULL: return null;
default: return "?";
}
}
@ -205,6 +210,7 @@ public class Address extends Type implements ICompositeType {
case POSTAL: return "http://hl7.org/fhir/address-type";
case PHYSICAL: return "http://hl7.org/fhir/address-type";
case BOTH: return "http://hl7.org/fhir/address-type";
case NULL: return null;
default: return "?";
}
}
@ -213,6 +219,7 @@ public class Address extends Type implements ICompositeType {
case POSTAL: return "Mailing addresses - PO Boxes and care-of addresses.";
case PHYSICAL: return "A physical address that can be visited.";
case BOTH: return "An address that is both physical and postal.";
case NULL: return null;
default: return "?";
}
}
@ -221,6 +228,7 @@ public class Address extends Type implements ICompositeType {
case POSTAL: return "Postal";
case PHYSICAL: return "Physical";
case BOTH: return "Postal & Physical";
case NULL: return null;
default: return "?";
}
}

View File

@ -112,6 +112,7 @@ public class AllergyIntolerance extends DomainResource {
case RESOLVED: return "resolved";
case REFUTED: return "refuted";
case ENTEREDINERROR: return "entered-in-error";
case NULL: return null;
default: return "?";
}
}
@ -124,6 +125,7 @@ public class AllergyIntolerance extends DomainResource {
case RESOLVED: return "http://hl7.org/fhir/allergy-intolerance-status";
case REFUTED: return "http://hl7.org/fhir/allergy-intolerance-status";
case ENTEREDINERROR: return "http://hl7.org/fhir/allergy-intolerance-status";
case NULL: return null;
default: return "?";
}
}
@ -136,6 +138,7 @@ public class AllergyIntolerance extends DomainResource {
case RESOLVED: return "A reaction to the identified Substance has been clinically reassessed by testing or rechallenge and considered to be resolved.";
case REFUTED: return "A propensity for a reaction to the identified Substance has been disproven with a high level of clinical certainty, which may include testing or rechallenge, and is refuted.";
case ENTEREDINERROR: return "The statement was entered in error and is not valid.";
case NULL: return null;
default: return "?";
}
}
@ -148,6 +151,7 @@ public class AllergyIntolerance extends DomainResource {
case RESOLVED: return "Resolved";
case REFUTED: return "Refuted";
case ENTEREDINERROR: return "Entered In Error";
case NULL: return null;
default: return "?";
}
}
@ -248,6 +252,7 @@ public class AllergyIntolerance extends DomainResource {
case CRITL: return "CRITL";
case CRITH: return "CRITH";
case CRITU: return "CRITU";
case NULL: return null;
default: return "?";
}
}
@ -256,6 +261,7 @@ public class AllergyIntolerance extends DomainResource {
case CRITL: return "http://hl7.org/fhir/allergy-intolerance-criticality";
case CRITH: return "http://hl7.org/fhir/allergy-intolerance-criticality";
case CRITU: return "http://hl7.org/fhir/allergy-intolerance-criticality";
case NULL: return null;
default: return "?";
}
}
@ -264,6 +270,7 @@ public class AllergyIntolerance extends DomainResource {
case CRITL: return "The potential clinical impact of a future reaction is estimated as low risk: exposure to substance is unlikely to result in a life threatening or organ system threatening outcome. Future exposure to the Substance is considered a relative contra-indication.";
case CRITH: return "The potential clinical impact of a future reaction is estimated as high risk: exposure to substance may result in a life threatening or organ system threatening outcome. Future exposure to the Substance may be considered an absolute contra-indication.";
case CRITU: return "Unable to assess the potential clinical impact with the information available.";
case NULL: return null;
default: return "?";
}
}
@ -272,6 +279,7 @@ public class AllergyIntolerance extends DomainResource {
case CRITL: return "Low Risk";
case CRITH: return "High Risk";
case CRITU: return "Unable to determine";
case NULL: return null;
default: return "?";
}
}
@ -341,6 +349,7 @@ public class AllergyIntolerance extends DomainResource {
switch (this) {
case ALLERGY: return "allergy";
case INTOLERANCE: return "intolerance";
case NULL: return null;
default: return "?";
}
}
@ -348,6 +357,7 @@ public class AllergyIntolerance extends DomainResource {
switch (this) {
case ALLERGY: return "http://hl7.org/fhir/allergy-intolerance-type";
case INTOLERANCE: return "http://hl7.org/fhir/allergy-intolerance-type";
case NULL: return null;
default: return "?";
}
}
@ -355,6 +365,7 @@ public class AllergyIntolerance extends DomainResource {
switch (this) {
case ALLERGY: return "A propensity for hypersensitivity reaction(s) to a substance. These reactions are most typically type I hypersensitivity, plus other \"allergy-like\" reactions, including pseudoallergy.";
case INTOLERANCE: return "A propensity for adverse reactions to a substance that is not judged to be allergic or \"allergy-like\". These reactions are typically (but not necessarily) non-immune. They are to some degree idiosyncratic and/or individually specific (i.e. are not a reaction that is expected to occur with most or all patients given similar circumstances).";
case NULL: return null;
default: return "?";
}
}
@ -362,6 +373,7 @@ public class AllergyIntolerance extends DomainResource {
switch (this) {
case ALLERGY: return "Allergy";
case INTOLERANCE: return "Intolerance";
case NULL: return null;
default: return "?";
}
}
@ -439,6 +451,7 @@ public class AllergyIntolerance extends DomainResource {
case MEDICATION: return "medication";
case ENVIRONMENT: return "environment";
case OTHER: return "other";
case NULL: return null;
default: return "?";
}
}
@ -448,6 +461,7 @@ public class AllergyIntolerance extends DomainResource {
case MEDICATION: return "http://hl7.org/fhir/allergy-intolerance-category";
case ENVIRONMENT: return "http://hl7.org/fhir/allergy-intolerance-category";
case OTHER: return "http://hl7.org/fhir/allergy-intolerance-category";
case NULL: return null;
default: return "?";
}
}
@ -457,6 +471,7 @@ public class AllergyIntolerance extends DomainResource {
case MEDICATION: return "Substances administered to achieve a physiological effect.";
case ENVIRONMENT: return "Substances that are encountered in the environment.";
case OTHER: return "Other substances that are not covered by any other category.";
case NULL: return null;
default: return "?";
}
}
@ -466,6 +481,7 @@ public class AllergyIntolerance extends DomainResource {
case MEDICATION: return "Medication";
case ENVIRONMENT: return "Environment";
case OTHER: return "Other";
case NULL: return null;
default: return "?";
}
}
@ -548,6 +564,7 @@ public class AllergyIntolerance extends DomainResource {
case UNLIKELY: return "unlikely";
case LIKELY: return "likely";
case CONFIRMED: return "confirmed";
case NULL: return null;
default: return "?";
}
}
@ -556,6 +573,7 @@ public class AllergyIntolerance extends DomainResource {
case UNLIKELY: return "http://hl7.org/fhir/reaction-event-certainty";
case LIKELY: return "http://hl7.org/fhir/reaction-event-certainty";
case CONFIRMED: return "http://hl7.org/fhir/reaction-event-certainty";
case NULL: return null;
default: return "?";
}
}
@ -564,6 +582,7 @@ public class AllergyIntolerance extends DomainResource {
case UNLIKELY: return "There is a low level of clinical certainty that the reaction was caused by the identified Substance.";
case LIKELY: return "There is a high level of clinical certainty that the reaction was caused by the identified Substance.";
case CONFIRMED: return "There is a very high level of clinical certainty that the reaction was due to the identified Substance, which may include clinical evidence by testing or rechallenge.";
case NULL: return null;
default: return "?";
}
}
@ -572,6 +591,7 @@ public class AllergyIntolerance extends DomainResource {
case UNLIKELY: return "Unlikely";
case LIKELY: return "Likely";
case CONFIRMED: return "Confirmed";
case NULL: return null;
default: return "?";
}
}
@ -648,6 +668,7 @@ public class AllergyIntolerance extends DomainResource {
case MILD: return "mild";
case MODERATE: return "moderate";
case SEVERE: return "severe";
case NULL: return null;
default: return "?";
}
}
@ -656,6 +677,7 @@ public class AllergyIntolerance extends DomainResource {
case MILD: return "http://hl7.org/fhir/reaction-event-severity";
case MODERATE: return "http://hl7.org/fhir/reaction-event-severity";
case SEVERE: return "http://hl7.org/fhir/reaction-event-severity";
case NULL: return null;
default: return "?";
}
}
@ -664,6 +686,7 @@ public class AllergyIntolerance extends DomainResource {
case MILD: return "Causes mild physiological effects.";
case MODERATE: return "Causes moderate physiological effects.";
case SEVERE: return "Causes severe physiological effects.";
case NULL: return null;
default: return "?";
}
}
@ -672,6 +695,7 @@ public class AllergyIntolerance extends DomainResource {
case MILD: return "Mild";
case MODERATE: return "Moderate";
case SEVERE: return "Severe";
case NULL: return null;
default: return "?";
}
}

View File

@ -112,6 +112,7 @@ public class Appointment extends DomainResource {
case FULFILLED: return "fulfilled";
case CANCELLED: return "cancelled";
case NOSHOW: return "noshow";
case NULL: return null;
default: return "?";
}
}
@ -124,6 +125,7 @@ public class Appointment extends DomainResource {
case FULFILLED: return "http://hl7.org/fhir/appointmentstatus";
case CANCELLED: return "http://hl7.org/fhir/appointmentstatus";
case NOSHOW: return "http://hl7.org/fhir/appointmentstatus";
case NULL: return null;
default: return "?";
}
}
@ -136,6 +138,7 @@ public class Appointment extends DomainResource {
case FULFILLED: return "This appointment has completed and may have resulted in an encounter.";
case CANCELLED: return "The appointment has been cancelled.";
case NOSHOW: return "Some or all of the participant(s) have not/did not appear for the appointment (usually the patient).";
case NULL: return null;
default: return "?";
}
}
@ -148,6 +151,7 @@ public class Appointment extends DomainResource {
case FULFILLED: return "Fulfilled";
case CANCELLED: return "Cancelled";
case NOSHOW: return "No Show";
case NULL: return null;
default: return "?";
}
}
@ -248,6 +252,7 @@ public class Appointment extends DomainResource {
case REQUIRED: return "required";
case OPTIONAL: return "optional";
case INFORMATIONONLY: return "information-only";
case NULL: return null;
default: return "?";
}
}
@ -256,6 +261,7 @@ public class Appointment extends DomainResource {
case REQUIRED: return "http://hl7.org/fhir/participantrequired";
case OPTIONAL: return "http://hl7.org/fhir/participantrequired";
case INFORMATIONONLY: return "http://hl7.org/fhir/participantrequired";
case NULL: return null;
default: return "?";
}
}
@ -264,6 +270,7 @@ public class Appointment extends DomainResource {
case REQUIRED: return "The participant is required to attend the appointment.";
case OPTIONAL: return "The participant may optionally attend the appointment.";
case INFORMATIONONLY: return "The participant is excluded from the appointment, and may not be informed of the appointment taking place. (Appointment is about them, not for them - such as 2 doctors discussing results about a patient's test).";
case NULL: return null;
default: return "?";
}
}
@ -272,6 +279,7 @@ public class Appointment extends DomainResource {
case REQUIRED: return "Required";
case OPTIONAL: return "Optional";
case INFORMATIONONLY: return "Information Only";
case NULL: return null;
default: return "?";
}
}
@ -355,6 +363,7 @@ public class Appointment extends DomainResource {
case DECLINED: return "declined";
case TENTATIVE: return "tentative";
case NEEDSACTION: return "needs-action";
case NULL: return null;
default: return "?";
}
}
@ -364,6 +373,7 @@ public class Appointment extends DomainResource {
case DECLINED: return "http://hl7.org/fhir/participationstatus";
case TENTATIVE: return "http://hl7.org/fhir/participationstatus";
case NEEDSACTION: return "http://hl7.org/fhir/participationstatus";
case NULL: return null;
default: return "?";
}
}
@ -373,6 +383,7 @@ public class Appointment extends DomainResource {
case DECLINED: return "The participant has declined the appointment and will not participate in the appointment.";
case TENTATIVE: return "The participant has tentatively accepted the appointment. This could be automatically created by a system and requires further processing before it can be accepted. There is no commitment that attendance will occur.";
case NEEDSACTION: return "The participant needs to indicate if they accept the appointment by changing this status to one of the other statuses.";
case NULL: return null;
default: return "?";
}
}
@ -382,6 +393,7 @@ public class Appointment extends DomainResource {
case DECLINED: return "Declined";
case TENTATIVE: return "Tentative";
case NEEDSACTION: return "Needs Action";
case NULL: return null;
default: return "?";
}
}

View File

@ -103,6 +103,7 @@ public class AppointmentResponse extends DomainResource {
case INPROCESS: return "in-process";
case COMPLETED: return "completed";
case NEEDSACTION: return "needs-action";
case NULL: return null;
default: return "?";
}
}
@ -114,6 +115,7 @@ public class AppointmentResponse extends DomainResource {
case INPROCESS: return "http://hl7.org/fhir/participantstatus";
case COMPLETED: return "http://hl7.org/fhir/participantstatus";
case NEEDSACTION: return "http://hl7.org/fhir/participantstatus";
case NULL: return null;
default: return "?";
}
}
@ -125,6 +127,7 @@ public class AppointmentResponse extends DomainResource {
case INPROCESS: return "The participant has in-process the appointment.";
case COMPLETED: return "The participant has completed the appointment.";
case NEEDSACTION: return "This is the intitial status of an appointment participant until a participant has replied. It implies that there is no commitment for the appointment.";
case NULL: return null;
default: return "?";
}
}
@ -136,6 +139,7 @@ public class AppointmentResponse extends DomainResource {
case INPROCESS: return "In Process";
case COMPLETED: return "Completed";
case NEEDSACTION: return "Needs Action";
case NULL: return null;
default: return "?";
}
}

View File

@ -98,6 +98,7 @@ public class AuditEvent extends DomainResource {
case U: return "U";
case D: return "D";
case E: return "E";
case NULL: return null;
default: return "?";
}
}
@ -108,6 +109,7 @@ public class AuditEvent extends DomainResource {
case U: return "http://hl7.org/fhir/audit-event-action";
case D: return "http://hl7.org/fhir/audit-event-action";
case E: return "http://hl7.org/fhir/audit-event-action";
case NULL: return null;
default: return "?";
}
}
@ -118,6 +120,7 @@ public class AuditEvent extends DomainResource {
case U: return "Update data, such as revise patient information.";
case D: return "Delete items, such as a doctor master file record.";
case E: return "Perform a system or application function such as log-on, program execution or use of an object's method, or perform a query/search operation.";
case NULL: return null;
default: return "?";
}
}
@ -128,6 +131,7 @@ public class AuditEvent extends DomainResource {
case U: return "Update";
case D: return "Delete";
case E: return "Execute";
case NULL: return null;
default: return "?";
}
}
@ -223,6 +227,7 @@ public class AuditEvent extends DomainResource {
case _4: return "4";
case _8: return "8";
case _12: return "12";
case NULL: return null;
default: return "?";
}
}
@ -232,6 +237,7 @@ public class AuditEvent extends DomainResource {
case _4: return "http://hl7.org/fhir/audit-event-outcome";
case _8: return "http://hl7.org/fhir/audit-event-outcome";
case _12: return "http://hl7.org/fhir/audit-event-outcome";
case NULL: return null;
default: return "?";
}
}
@ -241,6 +247,7 @@ public class AuditEvent extends DomainResource {
case _4: return "The action was not successful due to some kind of catered for error (often equivalent to an HTTP 400 response).";
case _8: return "The action was not successful due to some kind of unexpected error (often equivalent to an HTTP 500 response).";
case _12: return "An error of such magnitude occurred that the system is no longer available for use (i.e. the system died).";
case NULL: return null;
default: return "?";
}
}
@ -250,6 +257,7 @@ public class AuditEvent extends DomainResource {
case _4: return "Minor failure";
case _8: return "Serious failure";
case _12: return "Major failure";
case NULL: return null;
default: return "?";
}
}
@ -346,6 +354,7 @@ public class AuditEvent extends DomainResource {
case _3: return "3";
case _4: return "4";
case _5: return "5";
case NULL: return null;
default: return "?";
}
}
@ -356,6 +365,7 @@ public class AuditEvent extends DomainResource {
case _3: return "http://hl7.org/fhir/network-type";
case _4: return "http://hl7.org/fhir/network-type";
case _5: return "http://hl7.org/fhir/network-type";
case NULL: return null;
default: return "?";
}
}
@ -366,6 +376,7 @@ public class AuditEvent extends DomainResource {
case _3: return "The assigned telephone number.";
case _4: return "The assigned email address.";
case _5: return "URI (User directory, HTTP-PUT, ftp, etc.).";
case NULL: return null;
default: return "?";
}
}
@ -376,6 +387,7 @@ public class AuditEvent extends DomainResource {
case _3: return "Telephone Number";
case _4: return "Email address";
case _5: return "URI";
case NULL: return null;
default: return "?";
}
}

View File

@ -129,6 +129,7 @@ public class Bundle extends Resource implements IBaseBundle {
case HISTORY: return "history";
case SEARCHSET: return "searchset";
case COLLECTION: return "collection";
case NULL: return null;
default: return "?";
}
}
@ -143,6 +144,7 @@ public class Bundle extends Resource implements IBaseBundle {
case HISTORY: return "http://hl7.org/fhir/bundle-type";
case SEARCHSET: return "http://hl7.org/fhir/bundle-type";
case COLLECTION: return "http://hl7.org/fhir/bundle-type";
case NULL: return null;
default: return "?";
}
}
@ -157,6 +159,7 @@ public class Bundle extends Resource implements IBaseBundle {
case HISTORY: return "The bundle is a list of resources from a history interaction on a server.";
case SEARCHSET: return "The bundle is a list of resources returned as a result of a search/query interaction, operation, or message.";
case COLLECTION: return "The bundle is a set of resources collected into a single document for ease of distribution.";
case NULL: return null;
default: return "?";
}
}
@ -171,6 +174,7 @@ public class Bundle extends Resource implements IBaseBundle {
case HISTORY: return "History List";
case SEARCHSET: return "Search Results";
case COLLECTION: return "Collection";
case NULL: return null;
default: return "?";
}
}
@ -283,6 +287,7 @@ public class Bundle extends Resource implements IBaseBundle {
case MATCH: return "match";
case INCLUDE: return "include";
case OUTCOME: return "outcome";
case NULL: return null;
default: return "?";
}
}
@ -291,6 +296,7 @@ public class Bundle extends Resource implements IBaseBundle {
case MATCH: return "http://hl7.org/fhir/search-entry-mode";
case INCLUDE: return "http://hl7.org/fhir/search-entry-mode";
case OUTCOME: return "http://hl7.org/fhir/search-entry-mode";
case NULL: return null;
default: return "?";
}
}
@ -299,6 +305,7 @@ public class Bundle extends Resource implements IBaseBundle {
case MATCH: return "This resource matched the search specification.";
case INCLUDE: return "This resource is returned because it is referred to from another resource in the search set.";
case OUTCOME: return "An OperationOutcome that provides additional information about the processing of a search.";
case NULL: return null;
default: return "?";
}
}
@ -307,6 +314,7 @@ public class Bundle extends Resource implements IBaseBundle {
case MATCH: return "Match";
case INCLUDE: return "Include";
case OUTCOME: return "Outcome";
case NULL: return null;
default: return "?";
}
}
@ -390,6 +398,7 @@ public class Bundle extends Resource implements IBaseBundle {
case POST: return "POST";
case PUT: return "PUT";
case DELETE: return "DELETE";
case NULL: return null;
default: return "?";
}
}
@ -399,6 +408,7 @@ public class Bundle extends Resource implements IBaseBundle {
case POST: return "http://hl7.org/fhir/http-verb";
case PUT: return "http://hl7.org/fhir/http-verb";
case DELETE: return "http://hl7.org/fhir/http-verb";
case NULL: return null;
default: return "?";
}
}
@ -408,6 +418,7 @@ public class Bundle extends Resource implements IBaseBundle {
case POST: return "HTTP POST";
case PUT: return "HTTP PUT";
case DELETE: return "HTTP DELETE";
case NULL: return null;
default: return "?";
}
}
@ -417,6 +428,7 @@ public class Bundle extends Resource implements IBaseBundle {
case POST: return "POST";
case PUT: return "PUT";
case DELETE: return "DELETE";
case NULL: return null;
default: return "?";
}
}

View File

@ -98,6 +98,7 @@ public class CarePlan extends DomainResource {
case ACTIVE: return "active";
case COMPLETED: return "completed";
case CANCELLED: return "cancelled";
case NULL: return null;
default: return "?";
}
}
@ -108,6 +109,7 @@ public class CarePlan extends DomainResource {
case ACTIVE: return "http://hl7.org/fhir/care-plan-status";
case COMPLETED: return "http://hl7.org/fhir/care-plan-status";
case CANCELLED: return "http://hl7.org/fhir/care-plan-status";
case NULL: return null;
default: return "?";
}
}
@ -118,6 +120,7 @@ public class CarePlan extends DomainResource {
case ACTIVE: return "The plan is intended to be followed and used as part of patient care.";
case COMPLETED: return "The plan is no longer in use and is not expected to be followed or used in patient care.";
case CANCELLED: return "The plan has been terminated prior to reaching completion (though it may have been replaced by a new plan).";
case NULL: return null;
default: return "?";
}
}
@ -128,6 +131,7 @@ public class CarePlan extends DomainResource {
case ACTIVE: return "Active";
case COMPLETED: return "Completed";
case CANCELLED: return "Cancelled";
case NULL: return null;
default: return "?";
}
}
@ -216,6 +220,7 @@ public class CarePlan extends DomainResource {
case INCLUDES: return "includes";
case REPLACES: return "replaces";
case FULFILLS: return "fulfills";
case NULL: return null;
default: return "?";
}
}
@ -224,6 +229,7 @@ public class CarePlan extends DomainResource {
case INCLUDES: return "http://hl7.org/fhir/care-plan-relationship";
case REPLACES: return "http://hl7.org/fhir/care-plan-relationship";
case FULFILLS: return "http://hl7.org/fhir/care-plan-relationship";
case NULL: return null;
default: return "?";
}
}
@ -232,6 +238,7 @@ public class CarePlan extends DomainResource {
case INCLUDES: return "The referenced plan is considered to be part of this plan.";
case REPLACES: return "This plan takes the places of the referenced plan.";
case FULFILLS: return "This plan provides details about how to perform activities defined at a higher level by the referenced plan.";
case NULL: return null;
default: return "?";
}
}
@ -240,6 +247,7 @@ public class CarePlan extends DomainResource {
case INCLUDES: return "Includes";
case REPLACES: return "Replaces";
case FULFILLS: return "Fulfills";
case NULL: return null;
default: return "?";
}
}
@ -337,6 +345,7 @@ public class CarePlan extends DomainResource {
case ONHOLD: return "on-hold";
case COMPLETED: return "completed";
case CANCELLED: return "cancelled";
case NULL: return null;
default: return "?";
}
}
@ -348,6 +357,7 @@ public class CarePlan extends DomainResource {
case ONHOLD: return "http://hl7.org/fhir/care-plan-activity-status";
case COMPLETED: return "http://hl7.org/fhir/care-plan-activity-status";
case CANCELLED: return "http://hl7.org/fhir/care-plan-activity-status";
case NULL: return null;
default: return "?";
}
}
@ -359,6 +369,7 @@ public class CarePlan extends DomainResource {
case ONHOLD: return "Activity was started but has temporarily ceased with an expectation of resumption at a future time.";
case COMPLETED: return "The activities have been completed (more or less) as planned.";
case CANCELLED: return "The activities have been ended prior to completion (perhaps even before they were started).";
case NULL: return null;
default: return "?";
}
}
@ -370,6 +381,7 @@ public class CarePlan extends DomainResource {
case ONHOLD: return "On Hold";
case COMPLETED: return "Completed";
case CANCELLED: return "Cancelled";
case NULL: return null;
default: return "?";
}
}

View File

@ -100,6 +100,7 @@ public class Claim extends DomainResource {
case PHARMACY: return "pharmacy";
case PROFESSIONAL: return "professional";
case VISION: return "vision";
case NULL: return null;
default: return "?";
}
}
@ -110,6 +111,7 @@ public class Claim extends DomainResource {
case PHARMACY: return "http://hl7.org/fhir/claim-type-link";
case PROFESSIONAL: return "http://hl7.org/fhir/claim-type-link";
case VISION: return "http://hl7.org/fhir/claim-type-link";
case NULL: return null;
default: return "?";
}
}
@ -120,6 +122,7 @@ public class Claim extends DomainResource {
case PHARMACY: return "A claim for Pharmacy based goods and services.";
case PROFESSIONAL: return "A claim for Professional, typically out-patient, goods and services.";
case VISION: return "A claim for Vision (Ophthamologist, Optometrist and Optician) goods and services.";
case NULL: return null;
default: return "?";
}
}
@ -130,6 +133,7 @@ public class Claim extends DomainResource {
case PHARMACY: return "Pharmacy";
case PROFESSIONAL: return "Professional";
case VISION: return "Vision";
case NULL: return null;
default: return "?";
}
}
@ -225,6 +229,7 @@ public class Claim extends DomainResource {
case PROPOSED: return "proposed";
case EXPLORATORY: return "exploratory";
case OTHER: return "other";
case NULL: return null;
default: return "?";
}
}
@ -234,6 +239,7 @@ public class Claim extends DomainResource {
case PROPOSED: return "http://hl7.org/fhir/claim-use-link";
case EXPLORATORY: return "http://hl7.org/fhir/claim-use-link";
case OTHER: return "http://hl7.org/fhir/claim-use-link";
case NULL: return null;
default: return "?";
}
}
@ -243,6 +249,7 @@ public class Claim extends DomainResource {
case PROPOSED: return "The treatment is proposed and this represents a Pre-authorization for the services.";
case EXPLORATORY: return "The treatment is proposed and this represents a Pre-determination for the services.";
case OTHER: return "A locally defined or otherwise resolved status.";
case NULL: return null;
default: return "?";
}
}
@ -252,6 +259,7 @@ public class Claim extends DomainResource {
case PROPOSED: return "Proposed";
case EXPLORATORY: return "Exploratory";
case OTHER: return "Other";
case NULL: return null;
default: return "?";
}
}

View File

@ -84,6 +84,7 @@ public class ClinicalImpression extends DomainResource {
case INPROGRESS: return "in-progress";
case COMPLETED: return "completed";
case ENTEREDINERROR: return "entered-in-error";
case NULL: return null;
default: return "?";
}
}
@ -92,6 +93,7 @@ public class ClinicalImpression extends DomainResource {
case INPROGRESS: return "http://hl7.org/fhir/clinical-impression-status";
case COMPLETED: return "http://hl7.org/fhir/clinical-impression-status";
case ENTEREDINERROR: return "http://hl7.org/fhir/clinical-impression-status";
case NULL: return null;
default: return "?";
}
}
@ -100,6 +102,7 @@ public class ClinicalImpression extends DomainResource {
case INPROGRESS: return "The assessment is still on-going and results are not yet final.";
case COMPLETED: return "The assessment is done and the results are final.";
case ENTEREDINERROR: return "This assessment was never actually done and the record is erroneous (e.g. Wrong patient).";
case NULL: return null;
default: return "?";
}
}
@ -108,6 +111,7 @@ public class ClinicalImpression extends DomainResource {
case INPROGRESS: return "In progress";
case COMPLETED: return "Completed";
case ENTEREDINERROR: return "Entered in Error";
case NULL: return null;
default: return "?";
}
}

View File

@ -97,6 +97,7 @@ public class Communication extends DomainResource {
case SUSPENDED: return "suspended";
case REJECTED: return "rejected";
case FAILED: return "failed";
case NULL: return null;
default: return "?";
}
}
@ -107,6 +108,7 @@ public class Communication extends DomainResource {
case SUSPENDED: return "http://hl7.org/fhir/communication-status";
case REJECTED: return "http://hl7.org/fhir/communication-status";
case FAILED: return "http://hl7.org/fhir/communication-status";
case NULL: return null;
default: return "?";
}
}
@ -117,6 +119,7 @@ public class Communication extends DomainResource {
case SUSPENDED: return "The communication transmission has been held by originating system/user request.";
case REJECTED: return "The receiving system has declined to accept the message.";
case FAILED: return "There was a failure in transmitting the message out.";
case NULL: return null;
default: return "?";
}
}
@ -127,6 +130,7 @@ public class Communication extends DomainResource {
case SUSPENDED: return "Suspended";
case REJECTED: return "Rejected";
case FAILED: return "Failed";
case NULL: return null;
default: return "?";
}
}

View File

@ -132,6 +132,7 @@ public class CommunicationRequest extends DomainResource {
case SUSPENDED: return "suspended";
case REJECTED: return "rejected";
case FAILED: return "failed";
case NULL: return null;
default: return "?";
}
}
@ -147,6 +148,7 @@ public class CommunicationRequest extends DomainResource {
case SUSPENDED: return "http://hl7.org/fhir/communication-request-status";
case REJECTED: return "http://hl7.org/fhir/communication-request-status";
case FAILED: return "http://hl7.org/fhir/communication-request-status";
case NULL: return null;
default: return "?";
}
}
@ -162,6 +164,7 @@ public class CommunicationRequest extends DomainResource {
case SUSPENDED: return "The request has been held by originating system/user request.";
case REJECTED: return "The receiving system has declined to fulfill the request";
case FAILED: return "The communication was attempted, but due to some procedural error, it could not be completed.";
case NULL: return null;
default: return "?";
}
}
@ -177,6 +180,7 @@ public class CommunicationRequest extends DomainResource {
case SUSPENDED: return "Suspended";
case REJECTED: return "Rejected";
case FAILED: return "Failed";
case NULL: return null;
default: return "?";
}
}

View File

@ -91,6 +91,7 @@ public class Composition extends DomainResource {
case FINAL: return "final";
case AMENDED: return "amended";
case ENTEREDINERROR: return "entered-in-error";
case NULL: return null;
default: return "?";
}
}
@ -100,6 +101,7 @@ public class Composition extends DomainResource {
case FINAL: return "http://hl7.org/fhir/composition-status";
case AMENDED: return "http://hl7.org/fhir/composition-status";
case ENTEREDINERROR: return "http://hl7.org/fhir/composition-status";
case NULL: return null;
default: return "?";
}
}
@ -109,6 +111,7 @@ public class Composition extends DomainResource {
case FINAL: return "This version of the composition is complete and verified by an appropriate person and no further work is planned. Any subsequent updates would be on a new version of the composition.";
case AMENDED: return "The composition content or the referenced resources have been modified (edited or added to) subsequent to being released as \"final\" and the composition is complete and verified by an authorized person.";
case ENTEREDINERROR: return "The composition or document was originally created/issued in error, and this is an amendment that marks that the entire series should not be considered as valid.";
case NULL: return null;
default: return "?";
}
}
@ -118,6 +121,7 @@ public class Composition extends DomainResource {
case FINAL: return "Final";
case AMENDED: return "Amended";
case ENTEREDINERROR: return "Entered in Error";
case NULL: return null;
default: return "?";
}
}
@ -207,6 +211,7 @@ public class Composition extends DomainResource {
case PROFESSIONAL: return "professional";
case LEGAL: return "legal";
case OFFICIAL: return "official";
case NULL: return null;
default: return "?";
}
}
@ -216,6 +221,7 @@ public class Composition extends DomainResource {
case PROFESSIONAL: return "http://hl7.org/fhir/composition-attestation-mode";
case LEGAL: return "http://hl7.org/fhir/composition-attestation-mode";
case OFFICIAL: return "http://hl7.org/fhir/composition-attestation-mode";
case NULL: return null;
default: return "?";
}
}
@ -225,6 +231,7 @@ public class Composition extends DomainResource {
case PROFESSIONAL: return "The person authenticated the content in their professional capacity.";
case LEGAL: return "The person authenticated the content and accepted legal responsibility for its content.";
case OFFICIAL: return "The organization authenticated the content as consistent with their policies and procedures.";
case NULL: return null;
default: return "?";
}
}
@ -234,6 +241,7 @@ public class Composition extends DomainResource {
case PROFESSIONAL: return "Professional";
case LEGAL: return "Legal";
case OFFICIAL: return "Official";
case NULL: return null;
default: return "?";
}
}

View File

@ -105,6 +105,7 @@ public class Condition extends DomainResource {
case REFUTED: return "refuted";
case ENTEREDINERROR: return "entered-in-error";
case UNKNOWN: return "unknown";
case NULL: return null;
default: return "?";
}
}
@ -116,6 +117,7 @@ public class Condition extends DomainResource {
case REFUTED: return "http://hl7.org/fhir/condition-ver-status";
case ENTEREDINERROR: return "http://hl7.org/fhir/condition-ver-status";
case UNKNOWN: return "http://hl7.org/fhir/condition-ver-status";
case NULL: return null;
default: return "?";
}
}
@ -127,6 +129,7 @@ public class Condition extends DomainResource {
case REFUTED: return "This condition has been ruled out by diagnostic and clinical evidence.";
case ENTEREDINERROR: return "The statement was entered in error and is not valid.";
case UNKNOWN: return "The condition status is unknown. Note that \"unknown\" is a value of last resort and every attempt should be made to provide a meaningful value other than \"unknown\".";
case NULL: return null;
default: return "?";
}
}
@ -138,6 +141,7 @@ public class Condition extends DomainResource {
case REFUTED: return "Refuted";
case ENTEREDINERROR: return "Entered In Error";
case UNKNOWN: return "Unknown";
case NULL: return null;
default: return "?";
}
}

View File

@ -89,6 +89,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case INSTANCE: return "instance";
case CAPABILITY: return "capability";
case REQUIREMENTS: return "requirements";
case NULL: return null;
default: return "?";
}
}
@ -97,6 +98,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case INSTANCE: return "http://hl7.org/fhir/conformance-statement-kind";
case CAPABILITY: return "http://hl7.org/fhir/conformance-statement-kind";
case REQUIREMENTS: return "http://hl7.org/fhir/conformance-statement-kind";
case NULL: return null;
default: return "?";
}
}
@ -105,6 +107,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case INSTANCE: return "The Conformance instance represents the present capabilities of a specific system instance. This is the kind returned by OPTIONS for a FHIR server end-point.";
case CAPABILITY: return "The Conformance instance represents the capabilities of a system or piece of software, independent of a particular installation.";
case REQUIREMENTS: return "The Conformance instance represents a set of requirements for other systems to meet; e.g. as part of an implementation guide or 'request for proposal'.";
case NULL: return null;
default: return "?";
}
}
@ -113,6 +116,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case INSTANCE: return "Instance";
case CAPABILITY: return "Capability";
case REQUIREMENTS: return "Requirements";
case NULL: return null;
default: return "?";
}
}
@ -196,6 +200,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case EXTENSIONS: return "extensions";
case ELEMENTS: return "elements";
case BOTH: return "both";
case NULL: return null;
default: return "?";
}
}
@ -205,6 +210,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case EXTENSIONS: return "http://hl7.org/fhir/unknown-content-code";
case ELEMENTS: return "http://hl7.org/fhir/unknown-content-code";
case BOTH: return "http://hl7.org/fhir/unknown-content-code";
case NULL: return null;
default: return "?";
}
}
@ -214,6 +220,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case EXTENSIONS: return "The application accepts unknown extensions, but not unknown elements.";
case ELEMENTS: return "The application accepts unknown elements, but not unknown extensions.";
case BOTH: return "The application accepts unknown elements and extensions.";
case NULL: return null;
default: return "?";
}
}
@ -223,6 +230,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case EXTENSIONS: return "Unknown Extensions";
case ELEMENTS: return "Unknown Elements";
case BOTH: return "Unknown Elements and Extensions";
case NULL: return null;
default: return "?";
}
}
@ -298,6 +306,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
switch (this) {
case CLIENT: return "client";
case SERVER: return "server";
case NULL: return null;
default: return "?";
}
}
@ -305,6 +314,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
switch (this) {
case CLIENT: return "http://hl7.org/fhir/restful-conformance-mode";
case SERVER: return "http://hl7.org/fhir/restful-conformance-mode";
case NULL: return null;
default: return "?";
}
}
@ -312,6 +322,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
switch (this) {
case CLIENT: return "The application acts as a client for this resource.";
case SERVER: return "The application acts as a server for this resource.";
case NULL: return null;
default: return "?";
}
}
@ -319,6 +330,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
switch (this) {
case CLIENT: return "Client";
case SERVER: return "Server";
case NULL: return null;
default: return "?";
}
}
@ -431,6 +443,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case HISTORYTYPE: return "history-type";
case CREATE: return "create";
case SEARCHTYPE: return "search-type";
case NULL: return null;
default: return "?";
}
}
@ -445,6 +458,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case HISTORYTYPE: return "http://hl7.org/fhir/restful-interaction";
case CREATE: return "http://hl7.org/fhir/restful-interaction";
case SEARCHTYPE: return "http://hl7.org/fhir/restful-interaction";
case NULL: return null;
default: return "?";
}
}
@ -459,6 +473,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case HISTORYTYPE: return "";
case CREATE: return "";
case SEARCHTYPE: return "";
case NULL: return null;
default: return "?";
}
}
@ -473,6 +488,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case HISTORYTYPE: return "history-type";
case CREATE: return "create";
case SEARCHTYPE: return "search-type";
case NULL: return null;
default: return "?";
}
}
@ -585,6 +601,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case NOVERSION: return "no-version";
case VERSIONED: return "versioned";
case VERSIONEDUPDATE: return "versioned-update";
case NULL: return null;
default: return "?";
}
}
@ -593,6 +610,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case NOVERSION: return "http://hl7.org/fhir/versioning-policy";
case VERSIONED: return "http://hl7.org/fhir/versioning-policy";
case VERSIONEDUPDATE: return "http://hl7.org/fhir/versioning-policy";
case NULL: return null;
default: return "?";
}
}
@ -601,6 +619,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case NOVERSION: return "VersionId meta-property is not supported (server) or used (client).";
case VERSIONED: return "VersionId meta-property is supported (server) or used (client).";
case VERSIONEDUPDATE: return "VersionId is must be correct for updates (server) or will be specified (If-match header) for updates (client).";
case NULL: return null;
default: return "?";
}
}
@ -609,6 +628,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case NOVERSION: return "No VersionId Support";
case VERSIONED: return "Versioned";
case VERSIONEDUPDATE: return "VersionId tracked fully";
case NULL: return null;
default: return "?";
}
}
@ -685,6 +705,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case NOTSUPPORTED: return "not-supported";
case SINGLE: return "single";
case MULTIPLE: return "multiple";
case NULL: return null;
default: return "?";
}
}
@ -693,6 +714,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case NOTSUPPORTED: return "http://hl7.org/fhir/conditional-delete-status";
case SINGLE: return "http://hl7.org/fhir/conditional-delete-status";
case MULTIPLE: return "http://hl7.org/fhir/conditional-delete-status";
case NULL: return null;
default: return "?";
}
}
@ -701,6 +723,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case NOTSUPPORTED: return "No support for conditional deletes.";
case SINGLE: return "Conditional deletes are supported, but only single resources at a time.";
case MULTIPLE: return "Conditional deletes are supported, and multiple resources can be deleted in a single interaction.";
case NULL: return null;
default: return "?";
}
}
@ -709,6 +732,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case NOTSUPPORTED: return "Not Supported";
case SINGLE: return "Single Deletes Supported";
case MULTIPLE: return "Multiple Deletes Supported";
case NULL: return null;
default: return "?";
}
}
@ -834,6 +858,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case BELOW: return "below";
case ABOVE: return "above";
case TYPE: return "type";
case NULL: return null;
default: return "?";
}
}
@ -849,6 +874,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case BELOW: return "http://hl7.org/fhir/search-modifier-code";
case ABOVE: return "http://hl7.org/fhir/search-modifier-code";
case TYPE: return "http://hl7.org/fhir/search-modifier-code";
case NULL: return null;
default: return "?";
}
}
@ -864,6 +890,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case BELOW: return "The search parameter tests whether the value in a resource is subsumed by the specified value (is-a, or hierarchical relationships).";
case ABOVE: return "The search parameter tests whether the value in a resource subsumes the specified value (is-a, or hierarchical relationships).";
case TYPE: return "The search parameter only applies to the Resource Type specified as a modifier (e.g. the modifier is not actually :type, but :Patient etc.).";
case NULL: return null;
default: return "?";
}
}
@ -879,6 +906,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case BELOW: return "Below";
case ABOVE: return "Above";
case TYPE: return "Type";
case NULL: return null;
default: return "?";
}
}
@ -997,6 +1025,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case TRANSACTION: return "transaction";
case SEARCHSYSTEM: return "search-system";
case HISTORYSYSTEM: return "history-system";
case NULL: return null;
default: return "?";
}
}
@ -1005,6 +1034,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case TRANSACTION: return "http://hl7.org/fhir/restful-interaction";
case SEARCHSYSTEM: return "http://hl7.org/fhir/restful-interaction";
case HISTORYSYSTEM: return "http://hl7.org/fhir/restful-interaction";
case NULL: return null;
default: return "?";
}
}
@ -1013,6 +1043,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case TRANSACTION: return "";
case SEARCHSYSTEM: return "";
case HISTORYSYSTEM: return "";
case NULL: return null;
default: return "?";
}
}
@ -1021,6 +1052,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case TRANSACTION: return "transaction";
case SEARCHSYSTEM: return "search-system";
case HISTORYSYSTEM: return "history-system";
case NULL: return null;
default: return "?";
}
}
@ -1104,6 +1136,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case BATCH: return "batch";
case TRANSACTION: return "transaction";
case BOTH: return "both";
case NULL: return null;
default: return "?";
}
}
@ -1113,6 +1146,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case BATCH: return "http://hl7.org/fhir/transaction-mode";
case TRANSACTION: return "http://hl7.org/fhir/transaction-mode";
case BOTH: return "http://hl7.org/fhir/transaction-mode";
case NULL: return null;
default: return "?";
}
}
@ -1122,6 +1156,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case BATCH: return "Batches are supported.";
case TRANSACTION: return "Transactions are supported.";
case BOTH: return "Both batches and transactions are supported.";
case NULL: return null;
default: return "?";
}
}
@ -1131,6 +1166,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case BATCH: return "Batches supported";
case TRANSACTION: return "Transactions Supported";
case BOTH: return "Batches & Transactions";
case NULL: return null;
default: return "?";
}
}
@ -1213,6 +1249,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case CONSEQUENCE: return "Consequence";
case CURRENCY: return "Currency";
case NOTIFICATION: return "Notification";
case NULL: return null;
default: return "?";
}
}
@ -1221,6 +1258,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case CONSEQUENCE: return "http://hl7.org/fhir/message-significance-category";
case CURRENCY: return "http://hl7.org/fhir/message-significance-category";
case NOTIFICATION: return "http://hl7.org/fhir/message-significance-category";
case NULL: return null;
default: return "?";
}
}
@ -1229,6 +1267,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case CONSEQUENCE: return "The message represents/requests a change that should not be processed more than once; e.g. Making a booking for an appointment.";
case CURRENCY: return "The message represents a response to query for current information. Retrospective processing is wrong and/or wasteful.";
case NOTIFICATION: return "The content is not necessarily intended to be current, and it can be reprocessed, though there may be version issues created by processing old notifications.";
case NULL: return null;
default: return "?";
}
}
@ -1237,6 +1276,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case CONSEQUENCE: return "Consequence";
case CURRENCY: return "Currency";
case NOTIFICATION: return "Notification";
case NULL: return null;
default: return "?";
}
}
@ -1306,6 +1346,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
switch (this) {
case SENDER: return "sender";
case RECEIVER: return "receiver";
case NULL: return null;
default: return "?";
}
}
@ -1313,6 +1354,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
switch (this) {
case SENDER: return "http://hl7.org/fhir/message-conformance-event-mode";
case RECEIVER: return "http://hl7.org/fhir/message-conformance-event-mode";
case NULL: return null;
default: return "?";
}
}
@ -1320,6 +1362,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
switch (this) {
case SENDER: return "The application sends requests and receives responses.";
case RECEIVER: return "The application receives requests and sends responses.";
case NULL: return null;
default: return "?";
}
}
@ -1327,6 +1370,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
switch (this) {
case SENDER: return "Sender";
case RECEIVER: return "Receiver";
case NULL: return null;
default: return "?";
}
}
@ -1390,6 +1434,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
switch (this) {
case PRODUCER: return "producer";
case CONSUMER: return "consumer";
case NULL: return null;
default: return "?";
}
}
@ -1397,6 +1442,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
switch (this) {
case PRODUCER: return "http://hl7.org/fhir/document-mode";
case CONSUMER: return "http://hl7.org/fhir/document-mode";
case NULL: return null;
default: return "?";
}
}
@ -1404,6 +1450,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
switch (this) {
case PRODUCER: return "The application produces documents of the specified type.";
case CONSUMER: return "The application consumes documents of the specified type.";
case NULL: return null;
default: return "?";
}
}
@ -1411,6 +1458,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
switch (this) {
case PRODUCER: return "Producer";
case CONSUMER: return "Consumer";
case NULL: return null;
default: return "?";
}
}

View File

@ -94,6 +94,7 @@ public class ContactPoint extends Type implements ICompositeType {
case EMAIL: return "email";
case PAGER: return "pager";
case OTHER: return "other";
case NULL: return null;
default: return "?";
}
}
@ -104,6 +105,7 @@ public class ContactPoint extends Type implements ICompositeType {
case EMAIL: return "http://hl7.org/fhir/contact-point-system";
case PAGER: return "http://hl7.org/fhir/contact-point-system";
case OTHER: return "http://hl7.org/fhir/contact-point-system";
case NULL: return null;
default: return "?";
}
}
@ -114,6 +116,7 @@ public class ContactPoint extends Type implements ICompositeType {
case EMAIL: return "The value is an email address.";
case PAGER: return "The value is a pager number. These may be local pager numbers that are only usable on a particular pager system.";
case OTHER: return "A contact that is not a phone, fax, or email address. The format of the value SHOULD be a URL. This is intended for various personal contacts including blogs, Twitter, Facebook, etc. Do not use for email addresses. If this is not a URL, then it will require human interpretation.";
case NULL: return null;
default: return "?";
}
}
@ -124,6 +127,7 @@ public class ContactPoint extends Type implements ICompositeType {
case EMAIL: return "Email";
case PAGER: return "Pager";
case OTHER: return "URL";
case NULL: return null;
default: return "?";
}
}
@ -226,6 +230,7 @@ public class ContactPoint extends Type implements ICompositeType {
case TEMP: return "temp";
case OLD: return "old";
case MOBILE: return "mobile";
case NULL: return null;
default: return "?";
}
}
@ -236,6 +241,7 @@ public class ContactPoint extends Type implements ICompositeType {
case TEMP: return "http://hl7.org/fhir/contact-point-use";
case OLD: return "http://hl7.org/fhir/contact-point-use";
case MOBILE: return "http://hl7.org/fhir/contact-point-use";
case NULL: return null;
default: return "?";
}
}
@ -246,6 +252,7 @@ public class ContactPoint extends Type implements ICompositeType {
case TEMP: return "A temporary contact point. The period can provide more detailed information.";
case OLD: return "This contact point is no longer in use (or was never correct, but retained for records).";
case MOBILE: return "A telecommunication device that moves and stays with its owner. May have characteristics of all other use codes, suitable for urgent matters, not the first choice for routine business.";
case NULL: return null;
default: return "?";
}
}
@ -256,6 +263,7 @@ public class ContactPoint extends Type implements ICompositeType {
case TEMP: return "Temp";
case OLD: return "Old";
case MOBILE: return "Mobile";
case NULL: return null;
default: return "?";
}
}

View File

@ -107,6 +107,7 @@ public class DataElement extends DomainResource {
case CONVERTABLE: return "convertable";
case SCALEABLE: return "scaleable";
case FLEXIBLE: return "flexible";
case NULL: return null;
default: return "?";
}
}
@ -118,6 +119,7 @@ public class DataElement extends DomainResource {
case CONVERTABLE: return "http://hl7.org/fhir/dataelement-stringency";
case SCALEABLE: return "http://hl7.org/fhir/dataelement-stringency";
case FLEXIBLE: return "http://hl7.org/fhir/dataelement-stringency";
case NULL: return null;
default: return "?";
}
}
@ -129,6 +131,7 @@ public class DataElement extends DomainResource {
case CONVERTABLE: return "The data element allows multiple units of measure that are convertable between each other (e.g. inches and centimeters) and/or allows data to be captured in multiple value sets for which a known mapping exists allowing conversion of meaning.";
case SCALEABLE: return "A convertable data element where unit conversions are different only by a power of 10; e.g. g, mg, kg.";
case FLEXIBLE: return "The data element is unconstrained in units, choice of data types and/or choice of vocabulary such that automated comparison of data captured using the data element is not possible.";
case NULL: return null;
default: return "?";
}
}
@ -140,6 +143,7 @@ public class DataElement extends DomainResource {
case CONVERTABLE: return "Convertable";
case SCALEABLE: return "Scaleable";
case FLEXIBLE: return "Flexible";
case NULL: return null;
default: return "?";
}
}

View File

@ -84,6 +84,7 @@ public class DetectedIssue extends DomainResource {
case HIGH: return "high";
case MODERATE: return "moderate";
case LOW: return "low";
case NULL: return null;
default: return "?";
}
}
@ -92,6 +93,7 @@ public class DetectedIssue extends DomainResource {
case HIGH: return "http://hl7.org/fhir/detectedissue-severity";
case MODERATE: return "http://hl7.org/fhir/detectedissue-severity";
case LOW: return "http://hl7.org/fhir/detectedissue-severity";
case NULL: return null;
default: return "?";
}
}
@ -100,6 +102,7 @@ public class DetectedIssue extends DomainResource {
case HIGH: return "Indicates the issue may be life-threatening or has the potential to cause permanent injury.";
case MODERATE: return "Indicates the issue may result in noticeable adverse consequences but is unlikely to be life-threatening or cause permanent injury.";
case LOW: return "Indicates the issue may result in some adverse consequences but is unlikely to substantially affect the situation of the subject.";
case NULL: return null;
default: return "?";
}
}
@ -108,6 +111,7 @@ public class DetectedIssue extends DomainResource {
case HIGH: return "High";
case MODERATE: return "Moderate";
case LOW: return "Low";
case NULL: return null;
default: return "?";
}
}

View File

@ -82,6 +82,7 @@ public class Device extends DomainResource {
case AVAILABLE: return "available";
case NOTAVAILABLE: return "not-available";
case ENTEREDINERROR: return "entered-in-error";
case NULL: return null;
default: return "?";
}
}
@ -90,6 +91,7 @@ public class Device extends DomainResource {
case AVAILABLE: return "http://hl7.org/fhir/devicestatus";
case NOTAVAILABLE: return "http://hl7.org/fhir/devicestatus";
case ENTEREDINERROR: return "http://hl7.org/fhir/devicestatus";
case NULL: return null;
default: return "?";
}
}
@ -98,6 +100,7 @@ public class Device extends DomainResource {
case AVAILABLE: return "The Device is available for use.";
case NOTAVAILABLE: return "The Device is no longer available for use (e.g. lost, expired, damaged).";
case ENTEREDINERROR: return "The Device was entered in error and voided.";
case NULL: return null;
default: return "?";
}
}
@ -106,6 +109,7 @@ public class Device extends DomainResource {
case AVAILABLE: return "Available";
case NOTAVAILABLE: return "Not Available";
case ENTEREDINERROR: return "Entered in Error";
case NULL: return null;
default: return "?";
}
}

View File

@ -140,6 +140,7 @@ public class DeviceComponent extends DomainResource {
case MECHANICAL: return "mechanical";
case ACOUSTICAL: return "acoustical";
case MANUAL: return "manual";
case NULL: return null;
default: return "?";
}
}
@ -156,6 +157,7 @@ public class DeviceComponent extends DomainResource {
case MECHANICAL: return "http://hl7.org/fhir/measurement-principle";
case ACOUSTICAL: return "http://hl7.org/fhir/measurement-principle";
case MANUAL: return "http://hl7.org/fhir/measurement-principle";
case NULL: return null;
default: return "?";
}
}
@ -172,6 +174,7 @@ public class DeviceComponent extends DomainResource {
case MECHANICAL: return "Measurement is done using the mechanical principle.";
case ACOUSTICAL: return "Measurement is done using the acoustical principle.";
case MANUAL: return "Measurement is done using the manual principle.";
case NULL: return null;
default: return "?";
}
}
@ -188,6 +191,7 @@ public class DeviceComponent extends DomainResource {
case MECHANICAL: return "MSP Mechanical";
case ACOUSTICAL: return "MSP Acoustical";
case MANUAL: return "MSP Manual";
case NULL: return null;
default: return "?";
}
}

View File

@ -83,6 +83,7 @@ public class DeviceMetric extends DomainResource {
case ON: return "on";
case OFF: return "off";
case STANDBY: return "standby";
case NULL: return null;
default: return "?";
}
}
@ -91,6 +92,7 @@ public class DeviceMetric extends DomainResource {
case ON: return "http://hl7.org/fhir/metric-operational-status";
case OFF: return "http://hl7.org/fhir/metric-operational-status";
case STANDBY: return "http://hl7.org/fhir/metric-operational-status";
case NULL: return null;
default: return "?";
}
}
@ -99,6 +101,7 @@ public class DeviceMetric extends DomainResource {
case ON: return "The DeviceMetric is operating and will generate DeviceObservations.";
case OFF: return "The DeviceMetric is not operating.";
case STANDBY: return "The DeviceMetric is operating, but will not generate any DeviceObservations.";
case NULL: return null;
default: return "?";
}
}
@ -107,6 +110,7 @@ public class DeviceMetric extends DomainResource {
case ON: return "On";
case OFF: return "Off";
case STANDBY: return "Standby";
case NULL: return null;
default: return "?";
}
}
@ -218,6 +222,7 @@ public class DeviceMetric extends DomainResource {
case MAGENTA: return "magenta";
case CYAN: return "cyan";
case WHITE: return "white";
case NULL: return null;
default: return "?";
}
}
@ -231,6 +236,7 @@ public class DeviceMetric extends DomainResource {
case MAGENTA: return "http://hl7.org/fhir/metric-color";
case CYAN: return "http://hl7.org/fhir/metric-color";
case WHITE: return "http://hl7.org/fhir/metric-color";
case NULL: return null;
default: return "?";
}
}
@ -244,6 +250,7 @@ public class DeviceMetric extends DomainResource {
case MAGENTA: return "Color for representation - magenta.";
case CYAN: return "Color for representation - cyan.";
case WHITE: return "Color for representation - white.";
case NULL: return null;
default: return "?";
}
}
@ -257,6 +264,7 @@ public class DeviceMetric extends DomainResource {
case MAGENTA: return "Color Magenta";
case CYAN: return "Color Cyan";
case WHITE: return "Color White";
case NULL: return null;
default: return "?";
}
}
@ -370,6 +378,7 @@ public class DeviceMetric extends DomainResource {
case SETTING: return "setting";
case CALCULATION: return "calculation";
case UNSPECIFIED: return "unspecified";
case NULL: return null;
default: return "?";
}
}
@ -379,6 +388,7 @@ public class DeviceMetric extends DomainResource {
case SETTING: return "http://hl7.org/fhir/metric-category";
case CALCULATION: return "http://hl7.org/fhir/metric-category";
case UNSPECIFIED: return "http://hl7.org/fhir/metric-category";
case NULL: return null;
default: return "?";
}
}
@ -388,6 +398,7 @@ public class DeviceMetric extends DomainResource {
case SETTING: return "DeviceObservations generated for this DeviceMetric is a setting that will influence the behavior of the Device.";
case CALCULATION: return "DeviceObservations generated for this DeviceMetric are calculated.";
case UNSPECIFIED: return "The category of this DeviceMetric is unspecified.";
case NULL: return null;
default: return "?";
}
}
@ -397,6 +408,7 @@ public class DeviceMetric extends DomainResource {
case SETTING: return "Setting";
case CALCULATION: return "Calculation";
case UNSPECIFIED: return "Unspecified";
case NULL: return null;
default: return "?";
}
}
@ -486,6 +498,7 @@ public class DeviceMetric extends DomainResource {
case OFFSET: return "offset";
case GAIN: return "gain";
case TWOPOINT: return "two-point";
case NULL: return null;
default: return "?";
}
}
@ -495,6 +508,7 @@ public class DeviceMetric extends DomainResource {
case OFFSET: return "http://hl7.org/fhir/metric-calibration-type";
case GAIN: return "http://hl7.org/fhir/metric-calibration-type";
case TWOPOINT: return "http://hl7.org/fhir/metric-calibration-type";
case NULL: return null;
default: return "?";
}
}
@ -504,6 +518,7 @@ public class DeviceMetric extends DomainResource {
case OFFSET: return "TODO";
case GAIN: return "TODO";
case TWOPOINT: return "TODO";
case NULL: return null;
default: return "?";
}
}
@ -513,6 +528,7 @@ public class DeviceMetric extends DomainResource {
case OFFSET: return "Offset";
case GAIN: return "Gain";
case TWOPOINT: return "Two Point";
case NULL: return null;
default: return "?";
}
}
@ -602,6 +618,7 @@ public class DeviceMetric extends DomainResource {
case CALIBRATIONREQUIRED: return "calibration-required";
case CALIBRATED: return "calibrated";
case UNSPECIFIED: return "unspecified";
case NULL: return null;
default: return "?";
}
}
@ -611,6 +628,7 @@ public class DeviceMetric extends DomainResource {
case CALIBRATIONREQUIRED: return "http://hl7.org/fhir/metric-calibration-state";
case CALIBRATED: return "http://hl7.org/fhir/metric-calibration-state";
case UNSPECIFIED: return "http://hl7.org/fhir/metric-calibration-state";
case NULL: return null;
default: return "?";
}
}
@ -620,6 +638,7 @@ public class DeviceMetric extends DomainResource {
case CALIBRATIONREQUIRED: return "The metric needs to be calibrated.";
case CALIBRATED: return "The metric has been calibrated.";
case UNSPECIFIED: return "The state of calibration of this metric is unspecified.";
case NULL: return null;
default: return "?";
}
}
@ -629,6 +648,7 @@ public class DeviceMetric extends DomainResource {
case CALIBRATIONREQUIRED: return "Calibration Required";
case CALIBRATED: return "Calibrated";
case UNSPECIFIED: return "Unspecified";
case NULL: return null;
default: return "?";
}
}

View File

@ -130,6 +130,7 @@ public class DeviceUseRequest extends DomainResource {
case SUSPENDED: return "suspended";
case REJECTED: return "rejected";
case ABORTED: return "aborted";
case NULL: return null;
default: return "?";
}
}
@ -145,6 +146,7 @@ public class DeviceUseRequest extends DomainResource {
case SUSPENDED: return "http://hl7.org/fhir/device-use-request-status";
case REJECTED: return "http://hl7.org/fhir/device-use-request-status";
case ABORTED: return "http://hl7.org/fhir/device-use-request-status";
case NULL: return null;
default: return "?";
}
}
@ -160,6 +162,7 @@ public class DeviceUseRequest extends DomainResource {
case SUSPENDED: return "The request has been held by originating system/user request.";
case REJECTED: return "The receiving system has declined to fulfill the request.";
case ABORTED: return "The request was attempted, but due to some procedural error, it could not be completed.";
case NULL: return null;
default: return "?";
}
}
@ -175,6 +178,7 @@ public class DeviceUseRequest extends DomainResource {
case SUSPENDED: return "Suspended";
case REJECTED: return "Rejected";
case ABORTED: return "Aborted";
case NULL: return null;
default: return "?";
}
}
@ -300,6 +304,7 @@ public class DeviceUseRequest extends DomainResource {
case URGENT: return "urgent";
case STAT: return "stat";
case ASAP: return "asap";
case NULL: return null;
default: return "?";
}
}
@ -309,6 +314,7 @@ public class DeviceUseRequest extends DomainResource {
case URGENT: return "http://hl7.org/fhir/device-use-request-priority";
case STAT: return "http://hl7.org/fhir/device-use-request-priority";
case ASAP: return "http://hl7.org/fhir/device-use-request-priority";
case NULL: return null;
default: return "?";
}
}
@ -318,6 +324,7 @@ public class DeviceUseRequest extends DomainResource {
case URGENT: return "The request should be done urgently.";
case STAT: return "The request is time-critical.";
case ASAP: return "The request should be acted on as soon as possible.";
case NULL: return null;
default: return "?";
}
}
@ -327,6 +334,7 @@ public class DeviceUseRequest extends DomainResource {
case URGENT: return "Urgent";
case STAT: return "Stat";
case ASAP: return "ASAP";
case NULL: return null;
default: return "?";
}
}

View File

@ -153,6 +153,7 @@ public class DiagnosticOrder extends DomainResource {
case SUSPENDED: return "suspended";
case REJECTED: return "rejected";
case FAILED: return "failed";
case NULL: return null;
default: return "?";
}
}
@ -171,6 +172,7 @@ public class DiagnosticOrder extends DomainResource {
case SUSPENDED: return "http://hl7.org/fhir/diagnostic-order-status";
case REJECTED: return "http://hl7.org/fhir/diagnostic-order-status";
case FAILED: return "http://hl7.org/fhir/diagnostic-order-status";
case NULL: return null;
default: return "?";
}
}
@ -189,6 +191,7 @@ public class DiagnosticOrder extends DomainResource {
case SUSPENDED: return "The request has been held by originating system/user request.";
case REJECTED: return "The receiving system has declined to fulfill the request.";
case FAILED: return "The diagnostic investigation was attempted, but due to some procedural error, it could not be completed.";
case NULL: return null;
default: return "?";
}
}
@ -207,6 +210,7 @@ public class DiagnosticOrder extends DomainResource {
case SUSPENDED: return "Suspended";
case REJECTED: return "Rejected";
case FAILED: return "Failed";
case NULL: return null;
default: return "?";
}
}
@ -350,6 +354,7 @@ public class DiagnosticOrder extends DomainResource {
case URGENT: return "urgent";
case STAT: return "stat";
case ASAP: return "asap";
case NULL: return null;
default: return "?";
}
}
@ -359,6 +364,7 @@ public class DiagnosticOrder extends DomainResource {
case URGENT: return "http://hl7.org/fhir/diagnostic-order-priority";
case STAT: return "http://hl7.org/fhir/diagnostic-order-priority";
case ASAP: return "http://hl7.org/fhir/diagnostic-order-priority";
case NULL: return null;
default: return "?";
}
}
@ -368,6 +374,7 @@ public class DiagnosticOrder extends DomainResource {
case URGENT: return "The order should be urgently.";
case STAT: return "The order is time-critical.";
case ASAP: return "The order should be acted on as soon as possible.";
case NULL: return null;
default: return "?";
}
}
@ -377,6 +384,7 @@ public class DiagnosticOrder extends DomainResource {
case URGENT: return "Urgent";
case STAT: return "Stat";
case ASAP: return "ASAP";
case NULL: return null;
default: return "?";
}
}

View File

@ -112,6 +112,7 @@ public class DiagnosticReport extends DomainResource {
case APPENDED: return "appended";
case CANCELLED: return "cancelled";
case ENTEREDINERROR: return "entered-in-error";
case NULL: return null;
default: return "?";
}
}
@ -124,6 +125,7 @@ public class DiagnosticReport extends DomainResource {
case APPENDED: return "http://hl7.org/fhir/diagnostic-report-status";
case CANCELLED: return "http://hl7.org/fhir/diagnostic-report-status";
case ENTEREDINERROR: return "http://hl7.org/fhir/diagnostic-report-status";
case NULL: return null;
default: return "?";
}
}
@ -136,6 +138,7 @@ public class DiagnosticReport extends DomainResource {
case APPENDED: return "The report has been modified subsequent to being Final, and is complete and verified by an authorized person. New content has been added, but existing content hasn't changed.";
case CANCELLED: return "The report is unavailable because the measurement was not started or not completed (also sometimes called \"aborted\").";
case ENTEREDINERROR: return "The report has been withdrawn following a previous final release.";
case NULL: return null;
default: return "?";
}
}
@ -148,6 +151,7 @@ public class DiagnosticReport extends DomainResource {
case APPENDED: return "Appended";
case CANCELLED: return "Cancelled";
case ENTEREDINERROR: return "Entered in Error";
case NULL: return null;
default: return "?";
}
}

View File

@ -93,6 +93,7 @@ public class DocumentReference extends DomainResource {
case TRANSFORMS: return "transforms";
case SIGNS: return "signs";
case APPENDS: return "appends";
case NULL: return null;
default: return "?";
}
}
@ -102,6 +103,7 @@ public class DocumentReference extends DomainResource {
case TRANSFORMS: return "http://hl7.org/fhir/document-relationship-type";
case SIGNS: return "http://hl7.org/fhir/document-relationship-type";
case APPENDS: return "http://hl7.org/fhir/document-relationship-type";
case NULL: return null;
default: return "?";
}
}
@ -111,6 +113,7 @@ public class DocumentReference extends DomainResource {
case TRANSFORMS: return "This document was generated by transforming the target document (e.g. format or language conversion).";
case SIGNS: return "This document is a signature of the target document.";
case APPENDS: return "This document adds additional information to the target document.";
case NULL: return null;
default: return "?";
}
}
@ -120,6 +123,7 @@ public class DocumentReference extends DomainResource {
case TRANSFORMS: return "Transforms";
case SIGNS: return "Signs";
case APPENDS: return "Appends";
case NULL: return null;
default: return "?";
}
}

View File

@ -71,24 +71,28 @@ public class ElementDefinition extends Type implements ICompositeType {
public String toCode() {
switch (this) {
case XMLATTR: return "xmlAttr";
case NULL: return null;
default: return "?";
}
}
public String getSystem() {
switch (this) {
case XMLATTR: return "http://hl7.org/fhir/property-representation";
case NULL: return null;
default: return "?";
}
}
public String getDefinition() {
switch (this) {
case XMLATTR: return "In XML, this property is represented as an attribute not an element.";
case NULL: return null;
default: return "?";
}
}
public String getDisplay() {
switch (this) {
case XMLATTR: return "XML Attribute";
case NULL: return null;
default: return "?";
}
}
@ -153,6 +157,7 @@ public class ElementDefinition extends Type implements ICompositeType {
case CLOSED: return "closed";
case OPEN: return "open";
case OPENATEND: return "openAtEnd";
case NULL: return null;
default: return "?";
}
}
@ -161,6 +166,7 @@ public class ElementDefinition extends Type implements ICompositeType {
case CLOSED: return "http://hl7.org/fhir/resource-slicing-rules";
case OPEN: return "http://hl7.org/fhir/resource-slicing-rules";
case OPENATEND: return "http://hl7.org/fhir/resource-slicing-rules";
case NULL: return null;
default: return "?";
}
}
@ -169,6 +175,7 @@ public class ElementDefinition extends Type implements ICompositeType {
case CLOSED: return "No additional content is allowed other than that described by the slices in this profile.";
case OPEN: return "Additional content is allowed anywhere in the list.";
case OPENATEND: return "Additional content is allowed, but only at the end of the list. Note that using this requires that the slices be ordered, which makes it hard to share uses. This should only be done where absolutely required.";
case NULL: return null;
default: return "?";
}
}
@ -177,6 +184,7 @@ public class ElementDefinition extends Type implements ICompositeType {
case CLOSED: return "Closed";
case OPEN: return "Open";
case OPENATEND: return "Open at End";
case NULL: return null;
default: return "?";
}
}
@ -253,6 +261,7 @@ public class ElementDefinition extends Type implements ICompositeType {
case CONTAINED: return "contained";
case REFERENCED: return "referenced";
case BUNDLED: return "bundled";
case NULL: return null;
default: return "?";
}
}
@ -261,6 +270,7 @@ public class ElementDefinition extends Type implements ICompositeType {
case CONTAINED: return "http://hl7.org/fhir/resource-aggregation-mode";
case REFERENCED: return "http://hl7.org/fhir/resource-aggregation-mode";
case BUNDLED: return "http://hl7.org/fhir/resource-aggregation-mode";
case NULL: return null;
default: return "?";
}
}
@ -269,6 +279,7 @@ public class ElementDefinition extends Type implements ICompositeType {
case CONTAINED: return "The reference is a local reference to a contained resource.";
case REFERENCED: return "The reference to a resource that has to be resolved externally to the resource that includes the reference.";
case BUNDLED: return "The resource the reference points to will be found in the same bundle as the resource that includes the reference.";
case NULL: return null;
default: return "?";
}
}
@ -277,6 +288,7 @@ public class ElementDefinition extends Type implements ICompositeType {
case CONTAINED: return "Contained";
case REFERENCED: return "Referenced";
case BUNDLED: return "Bundled";
case NULL: return null;
default: return "?";
}
}
@ -346,6 +358,7 @@ public class ElementDefinition extends Type implements ICompositeType {
switch (this) {
case ERROR: return "error";
case WARNING: return "warning";
case NULL: return null;
default: return "?";
}
}
@ -353,6 +366,7 @@ public class ElementDefinition extends Type implements ICompositeType {
switch (this) {
case ERROR: return "http://hl7.org/fhir/constraint-severity";
case WARNING: return "http://hl7.org/fhir/constraint-severity";
case NULL: return null;
default: return "?";
}
}
@ -360,6 +374,7 @@ public class ElementDefinition extends Type implements ICompositeType {
switch (this) {
case ERROR: return "If the constraint is violated, the resource is not conformant.";
case WARNING: return "If the constraint is violated, the resource is conformant, but it is not necessarily following best practice.";
case NULL: return null;
default: return "?";
}
}
@ -367,6 +382,7 @@ public class ElementDefinition extends Type implements ICompositeType {
switch (this) {
case ERROR: return "Error";
case WARNING: return "Warning";
case NULL: return null;
default: return "?";
}
}

View File

@ -103,6 +103,7 @@ public class Encounter extends DomainResource {
case ONLEAVE: return "onleave";
case FINISHED: return "finished";
case CANCELLED: return "cancelled";
case NULL: return null;
default: return "?";
}
}
@ -114,6 +115,7 @@ public class Encounter extends DomainResource {
case ONLEAVE: return "http://hl7.org/fhir/encounter-state";
case FINISHED: return "http://hl7.org/fhir/encounter-state";
case CANCELLED: return "http://hl7.org/fhir/encounter-state";
case NULL: return null;
default: return "?";
}
}
@ -125,6 +127,7 @@ public class Encounter extends DomainResource {
case ONLEAVE: return "The Encounter has begun, but the patient is temporarily on leave.";
case FINISHED: return "The Encounter has ended.";
case CANCELLED: return "The Encounter has ended before it has begun.";
case NULL: return null;
default: return "?";
}
}
@ -136,6 +139,7 @@ public class Encounter extends DomainResource {
case ONLEAVE: return "On Leave";
case FINISHED: return "Finished";
case CANCELLED: return "Cancelled";
case NULL: return null;
default: return "?";
}
}
@ -272,6 +276,7 @@ public class Encounter extends DomainResource {
case DAYTIME: return "daytime";
case VIRTUAL: return "virtual";
case OTHER: return "other";
case NULL: return null;
default: return "?";
}
}
@ -286,6 +291,7 @@ public class Encounter extends DomainResource {
case DAYTIME: return "http://hl7.org/fhir/encounter-class";
case VIRTUAL: return "http://hl7.org/fhir/encounter-class";
case OTHER: return "http://hl7.org/fhir/encounter-class";
case NULL: return null;
default: return "?";
}
}
@ -300,6 +306,7 @@ public class Encounter extends DomainResource {
case DAYTIME: return "An encounter where the patient needs more prolonged treatment or investigations than outpatients, but who do not need to stay in the hospital overnight.";
case VIRTUAL: return "An encounter that takes place where the patient and practitioner do not physically meet but use electronic means for contact.";
case OTHER: return "Any other encounter type that is not described by one of the other values. Where this is used it is expected that an implementer will include an extension value to define what the actual other type is.";
case NULL: return null;
default: return "?";
}
}
@ -314,6 +321,7 @@ public class Encounter extends DomainResource {
case DAYTIME: return "Daytime";
case VIRTUAL: return "Virtual";
case OTHER: return "Other";
case NULL: return null;
default: return "?";
}
}
@ -437,6 +445,7 @@ Not to be used when the patient is currently at the location
case ACTIVE: return "active";
case RESERVED: return "reserved";
case COMPLETED: return "completed";
case NULL: return null;
default: return "?";
}
}
@ -446,6 +455,7 @@ Not to be used when the patient is currently at the location
case ACTIVE: return "http://hl7.org/fhir/encounter-location-status";
case RESERVED: return "http://hl7.org/fhir/encounter-location-status";
case COMPLETED: return "http://hl7.org/fhir/encounter-location-status";
case NULL: return null;
default: return "?";
}
}
@ -455,6 +465,7 @@ Not to be used when the patient is currently at the location
case ACTIVE: return "The patient is currently at this location, or was between the period specified.\n\nA system may update these records when the patient leaves the location to either reserved, or completed";
case RESERVED: return "This location is held empty for this patient.";
case COMPLETED: return "The patient was at this location during the period specified.\n\nNot to be used when the patient is currently at the location";
case NULL: return null;
default: return "?";
}
}
@ -464,6 +475,7 @@ Not to be used when the patient is currently at the location
case ACTIVE: return "Active";
case RESERVED: return "Reserved";
case COMPLETED: return "Completed";
case NULL: return null;
default: return "?";
}
}

View File

@ -93,6 +93,7 @@ public class Enumerations {
case FEMALE: return "female";
case OTHER: return "other";
case UNKNOWN: return "unknown";
case NULL: return null;
default: return "?";
}
}
@ -102,6 +103,7 @@ public class Enumerations {
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 "?";
}
}
@ -111,6 +113,7 @@ public class Enumerations {
case FEMALE: return "Female";
case OTHER: return "Other";
case UNKNOWN: return "Unknown";
case NULL: return null;
default: return "?";
}
}
@ -120,6 +123,7 @@ public class Enumerations {
case FEMALE: return "Female";
case OTHER: return "Other";
case UNKNOWN: return "Unknown";
case NULL: return null;
default: return "?";
}
}
@ -223,6 +227,7 @@ public class Enumerations {
case WK: return "wk";
case MO: return "mo";
case A: return "a";
case NULL: return null;
default: return "?";
}
}
@ -234,6 +239,7 @@ public class Enumerations {
case WK: return "http://unitsofmeasure.org";
case MO: return "http://unitsofmeasure.org";
case A: return "http://unitsofmeasure.org";
case NULL: return null;
default: return "?";
}
}
@ -245,6 +251,7 @@ public class Enumerations {
case WK: return "";
case MO: return "";
case A: return "";
case NULL: return null;
default: return "?";
}
}
@ -256,6 +263,7 @@ public class Enumerations {
case WK: return "Week";
case MO: return "Month";
case A: return "Year";
case NULL: return null;
default: return "?";
}
}
@ -357,6 +365,7 @@ public class Enumerations {
case EXTENSIBLE: return "extensible";
case PREFERRED: return "preferred";
case EXAMPLE: return "example";
case NULL: return null;
default: return "?";
}
}
@ -366,6 +375,7 @@ public class Enumerations {
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 "?";
}
}
@ -375,6 +385,7 @@ public class Enumerations {
case EXTENSIBLE: return "To be conformant, instances of this element SHALL include a code from the specified value set if any of the codes within the value set can apply to the concept being communicated. If the valueset 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 "?";
}
}
@ -384,6 +395,7 @@ public class Enumerations {
case EXTENSIBLE: return "Extensible";
case PREFERRED: return "Preferred";
case EXAMPLE: return "Example";
case NULL: return null;
default: return "?";
}
}
@ -508,6 +520,7 @@ public class Enumerations {
case INEXACT: return "inexact";
case UNMATCHED: return "unmatched";
case DISJOINT: return "disjoint";
case NULL: return null;
default: return "?";
}
}
@ -522,6 +535,7 @@ public class Enumerations {
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 "?";
}
}
@ -536,6 +550,7 @@ public class Enumerations {
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 narrower 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 destination concept 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 "?";
}
}
@ -550,6 +565,7 @@ public class Enumerations {
case INEXACT: return "Inexact";
case UNMATCHED: return "Unmatched";
case DISJOINT: return "Disjoint";
case NULL: return null;
default: return "?";
}
}
@ -662,6 +678,7 @@ public class Enumerations {
case DRAFT: return "draft";
case ACTIVE: return "active";
case RETIRED: return "retired";
case NULL: return null;
default: return "?";
}
}
@ -670,6 +687,7 @@ public class Enumerations {
case DRAFT: return "http://hl7.org/fhir/conformance-resource-status";
case ACTIVE: return "http://hl7.org/fhir/conformance-resource-status";
case RETIRED: return "http://hl7.org/fhir/conformance-resource-status";
case NULL: return null;
default: return "?";
}
}
@ -678,6 +696,7 @@ public class Enumerations {
case DRAFT: return "This resource is still under development.";
case ACTIVE: return "This resource is ready for normal use.";
case RETIRED: return "This resource has been withdrawn or superseded and should no longer be used.";
case NULL: return null;
default: return "?";
}
}
@ -686,6 +705,7 @@ public class Enumerations {
case DRAFT: return "Draft";
case ACTIVE: return "Active";
case RETIRED: return "Retired";
case NULL: return null;
default: return "?";
}
}
@ -804,6 +824,7 @@ public class Enumerations {
case ASTEXT: return "astext";
case ERROR: return "error";
case NAN: return "NaN";
case NULL: return null;
default: return "?";
}
}
@ -818,6 +839,7 @@ public class Enumerations {
case ASTEXT: return "http://hl7.org/fhir/data-absent-reason";
case ERROR: return "http://hl7.org/fhir/data-absent-reason";
case NAN: return "http://hl7.org/fhir/data-absent-reason";
case NULL: return null;
default: return "?";
}
}
@ -832,6 +854,7 @@ public class Enumerations {
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 NAN: return "NaN, standing for not a number, is a numeric data type value representing an undefined or unrepresentable value.";
case NULL: return null;
default: return "?";
}
}
@ -846,6 +869,7 @@ public class Enumerations {
case ASTEXT: return "As Text";
case ERROR: return "Error";
case NAN: return "Not a Number";
case NULL: return null;
default: return "?";
}
}
@ -1259,6 +1283,7 @@ public class Enumerations {
case URI: return "uri";
case UUID: return "uuid";
case XHTML: return "xhtml";
case NULL: return null;
default: return "?";
}
}
@ -1310,6 +1335,7 @@ public class Enumerations {
case URI: 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 "?";
}
}
@ -1361,6 +1387,7 @@ public class Enumerations {
case URI: return "String of characters used to identify a name or a resource";
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 "?";
}
}
@ -1412,6 +1439,7 @@ public class Enumerations {
case URI: return "uri";
case UUID: return "uuid";
case XHTML: return "XHTML";
case NULL: return null;
default: return "?";
}
}
@ -1746,6 +1774,7 @@ public class Enumerations {
case CURRENT: return "current";
case SUPERSEDED: return "superseded";
case ENTEREDINERROR: return "entered-in-error";
case NULL: return null;
default: return "?";
}
}
@ -1754,6 +1783,7 @@ public class Enumerations {
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 "?";
}
}
@ -1762,6 +1792,7 @@ public class Enumerations {
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 "?";
}
}
@ -1770,6 +1801,7 @@ public class Enumerations {
case CURRENT: return "Current";
case SUPERSEDED: return "Superseded";
case ENTEREDINERROR: return "Entered in Error";
case NULL: return null;
default: return "?";
}
}
@ -2821,6 +2853,7 @@ The primary difference between a medication statement and a medication administr
case TESTSCRIPT: return "TestScript";
case VALUESET: return "ValueSet";
case VISIONPRESCRIPTION: return "VisionPrescription";
case NULL: return null;
default: return "?";
}
}
@ -2968,6 +3001,7 @@ The primary difference between a medication statement and a medication administr
case TESTSCRIPT: return "http://hl7.org/fhir/resource-types";
case VALUESET: return "http://hl7.org/fhir/resource-types";
case VISIONPRESCRIPTION: return "http://hl7.org/fhir/resource-types";
case NULL: return null;
default: return "?";
}
}
@ -3115,6 +3149,7 @@ The primary difference between a medication statement and a medication administr
case TESTSCRIPT: return "TestScript is a resource that specifies a suite of tests against a FHIR server implementation to determine compliance against the FHIR specification.";
case VALUESET: return "A value set specifies a set of codes drawn from one or more code systems.";
case VISIONPRESCRIPTION: return "An authorization for the supply of glasses and/or contact lenses to a patient.";
case NULL: return null;
default: return "?";
}
}
@ -3262,6 +3297,7 @@ The primary difference between a medication statement and a medication administr
case TESTSCRIPT: return "TestScript";
case VALUESET: return "ValueSet";
case VISIONPRESCRIPTION: return "VisionPrescription";
case NULL: return null;
default: return "?";
}
}
@ -4221,6 +4257,7 @@ The primary difference between a medication statement and a medication administr
case PATIENTLINK: return "patient-link";
case PATIENTUNLINK: return "patient-unlink";
case VALUESETEXPAND: return "valueset-expand";
case NULL: return null;
default: return "?";
}
}
@ -4236,6 +4273,7 @@ The primary difference between a medication statement and a medication administr
case PATIENTLINK: return "http://hl7.org/fhir/message-events";
case PATIENTUNLINK: return "http://hl7.org/fhir/message-events";
case VALUESETEXPAND: return "http://hl7.org/fhir/message-events";
case NULL: return null;
default: return "?";
}
}
@ -4251,6 +4289,7 @@ The primary difference between a medication statement and a medication administr
case PATIENTLINK: return "Notification that two patient records actually identify the same patient.";
case PATIENTUNLINK: return "Notification that previous advice that two patient records concern the same patient is now considered incorrect.";
case VALUESETEXPAND: return "The definition of a value set is used to create a simple collection of codes suitable for use for data entry or validation. An expanded value set will be returned, or an error message.";
case NULL: return null;
default: return "?";
}
}
@ -4266,6 +4305,7 @@ The primary difference between a medication statement and a medication administr
case PATIENTLINK: return "patient-link";
case PATIENTUNLINK: return "patient-unlink";
case VALUESETEXPAND: return "valueset-expand";
case NULL: return null;
default: return "?";
}
}
@ -4384,6 +4424,7 @@ The primary difference between a medication statement and a medication administr
case DISPLAY: return "display";
case PRINT: return "print";
case PRINTOPER: return "printoper";
case NULL: return null;
default: return "?";
}
}
@ -4392,6 +4433,7 @@ The primary difference between a medication statement and a medication administr
case DISPLAY: return "http://hl7.org/fhir/note-type";
case PRINT: return "http://hl7.org/fhir/note-type";
case PRINTOPER: return "http://hl7.org/fhir/note-type";
case NULL: return null;
default: return "?";
}
}
@ -4400,6 +4442,7 @@ The primary difference between a medication statement and a medication administr
case DISPLAY: return "Display the note.";
case PRINT: return "Print the note on the form.";
case PRINTOPER: return "Print the note for the operator.";
case NULL: return null;
default: return "?";
}
}
@ -4408,6 +4451,7 @@ The primary difference between a medication statement and a medication administr
case DISPLAY: return "Display";
case PRINT: return "Print (Form)";
case PRINTOPER: return "Print (Operator)";
case NULL: return null;
default: return "?";
}
}
@ -4477,6 +4521,7 @@ The primary difference between a medication statement and a medication administr
switch (this) {
case COMPLETE: return "complete";
case ERROR: return "error";
case NULL: return null;
default: return "?";
}
}
@ -4484,6 +4529,7 @@ The primary difference between a medication statement and a medication administr
switch (this) {
case COMPLETE: return "http://hl7.org/fhir/remittance-outcome";
case ERROR: return "http://hl7.org/fhir/remittance-outcome";
case NULL: return null;
default: return "?";
}
}
@ -4491,6 +4537,7 @@ The primary difference between a medication statement and a medication administr
switch (this) {
case COMPLETE: return "The processing completed without errors.";
case ERROR: return "The processing identified errors.";
case NULL: return null;
default: return "?";
}
}
@ -4498,6 +4545,7 @@ The primary difference between a medication statement and a medication administr
switch (this) {
case COMPLETE: return "Complete";
case ERROR: return "Error";
case NULL: return null;
default: return "?";
}
}
@ -5221,6 +5269,7 @@ The primary difference between a medication statement and a medication administr
case TESTSCRIPT: return "TestScript";
case VALUESET: return "ValueSet";
case VISIONPRESCRIPTION: return "VisionPrescription";
case NULL: return null;
default: return "?";
}
}
@ -5322,6 +5371,7 @@ The primary difference between a medication statement and a medication administr
case TESTSCRIPT: return "http://hl7.org/fhir/resource-types";
case VALUESET: return "http://hl7.org/fhir/resource-types";
case VISIONPRESCRIPTION: return "http://hl7.org/fhir/resource-types";
case NULL: return null;
default: return "?";
}
}
@ -5423,6 +5473,7 @@ The primary difference between a medication statement and a medication administr
case TESTSCRIPT: return "TestScript is a resource that specifies a suite of tests against a FHIR server implementation to determine compliance against the FHIR specification.";
case VALUESET: return "A value set specifies a set of codes drawn from one or more code systems.";
case VISIONPRESCRIPTION: return "An authorization for the supply of glasses and/or contact lenses to a patient.";
case NULL: return null;
default: return "?";
}
}
@ -5524,6 +5575,7 @@ The primary difference between a medication statement and a medication administr
case TESTSCRIPT: return "TestScript";
case VALUESET: return "ValueSet";
case VISIONPRESCRIPTION: return "VisionPrescription";
case NULL: return null;
default: return "?";
}
}
@ -6193,6 +6245,7 @@ The primary difference between a medication statement and a medication administr
case COMPOSITE: return "composite";
case QUANTITY: return "quantity";
case URI: return "uri";
case NULL: return null;
default: return "?";
}
}
@ -6206,6 +6259,7 @@ The primary difference between a medication statement and a medication administr
case COMPOSITE: return "http://hl7.org/fhir/search-param-type";
case QUANTITY: return "http://hl7.org/fhir/search-param-type";
case URI: return "http://hl7.org/fhir/search-param-type";
case NULL: return null;
default: return "?";
}
}
@ -6219,6 +6273,7 @@ The primary difference between a medication statement and a medication administr
case COMPOSITE: return "A composite search parameter that combines a search on two values together.";
case QUANTITY: return "A search parameter that searches on a quantity.";
case URI: return "A search parameter that searches on a URI (RFC 3986).";
case NULL: return null;
default: return "?";
}
}
@ -6232,6 +6287,7 @@ The primary difference between a medication statement and a medication administr
case COMPOSITE: return "Composite";
case QUANTITY: return "Quantity";
case URI: return "URI";
case NULL: return null;
default: return "?";
}
}
@ -6359,6 +6415,7 @@ The primary difference between a medication statement and a medication administr
case SUFFICIENT: return "sufficient";
case WITHDRAWN: return "withdrawn";
case NILKNOWN: return "nil-known";
case NULL: return null;
default: return "?";
}
}
@ -6370,6 +6427,7 @@ The primary difference between a medication statement and a medication administr
case SUFFICIENT: return "http://hl7.org/fhir/special-values";
case WITHDRAWN: return "http://hl7.org/fhir/special-values";
case NILKNOWN: return "http://hl7.org/fhir/special-values";
case NULL: return null;
default: return "?";
}
}
@ -6381,6 +6439,7 @@ The primary difference between a medication statement and a medication administr
case SUFFICIENT: return "The specific quantity is not known, but is known to be non-zero and is not specified because it makes up the bulk of the material.";
case WITHDRAWN: return "The value is no longer available.";
case NILKNOWN: return "The are no known applicable values in this context.";
case NULL: return null;
default: return "?";
}
}
@ -6392,6 +6451,7 @@ The primary difference between a medication statement and a medication administr
case SUFFICIENT: return "Sufficient Quantity";
case WITHDRAWN: return "Value Withdrawn";
case NILKNOWN: return "Nil Known";
case NULL: return null;
default: return "?";
}
}

View File

@ -103,6 +103,7 @@ public class EpisodeOfCare extends DomainResource {
case ONHOLD: return "onhold";
case FINISHED: return "finished";
case CANCELLED: return "cancelled";
case NULL: return null;
default: return "?";
}
}
@ -114,6 +115,7 @@ public class EpisodeOfCare extends DomainResource {
case ONHOLD: return "http://hl7.org/fhir/episode-of-care-status";
case FINISHED: return "http://hl7.org/fhir/episode-of-care-status";
case CANCELLED: return "http://hl7.org/fhir/episode-of-care-status";
case NULL: return null;
default: return "?";
}
}
@ -125,6 +127,7 @@ public class EpisodeOfCare extends DomainResource {
case ONHOLD: return "This episode of care is on hold, the organization has limited responsibility for the patient (such as while on respite).";
case FINISHED: return "This episode of care is finished at the organization is not expecting to be providing care to the patient. Can also be known as \"closed\", \"completed\" or other similar terms.";
case CANCELLED: return "The episode of care was cancelled, or withdrawn from service, often selected during the planned stage as the patient may have gone elsewhere, or the circumstances have changed and the organization is unable to provide the care. It indicates that services terminated outside the planned/expected workflow.";
case NULL: return null;
default: return "?";
}
}
@ -136,6 +139,7 @@ public class EpisodeOfCare extends DomainResource {
case ONHOLD: return "On Hold";
case FINISHED: return "Finished";
case CANCELLED: return "Cancelled";
case NULL: return null;
default: return "?";
}
}

View File

@ -93,6 +93,7 @@ public class FamilyMemberHistory extends DomainResource {
case COMPLETED: return "completed";
case ENTEREDINERROR: return "entered-in-error";
case HEALTHUNKNOWN: return "health-unknown";
case NULL: return null;
default: return "?";
}
}
@ -102,6 +103,7 @@ public class FamilyMemberHistory extends DomainResource {
case COMPLETED: return "http://hl7.org/fhir/history-status";
case ENTEREDINERROR: return "http://hl7.org/fhir/history-status";
case HEALTHUNKNOWN: return "http://hl7.org/fhir/history-status";
case NULL: return null;
default: return "?";
}
}
@ -111,6 +113,7 @@ public class FamilyMemberHistory extends DomainResource {
case COMPLETED: return "All relevant health information is known and captured.";
case ENTEREDINERROR: return "This instance should not have been part of this patient's medical record.";
case HEALTHUNKNOWN: return "Health information for this individual is unavailable/unknown.";
case NULL: return null;
default: return "?";
}
}
@ -120,6 +123,7 @@ public class FamilyMemberHistory extends DomainResource {
case COMPLETED: return "Completed";
case ENTEREDINERROR: return "Entered in error";
case HEALTHUNKNOWN: return "Health unknown";
case NULL: return null;
default: return "?";
}
}

View File

@ -80,6 +80,7 @@ public class Flag extends DomainResource {
case ACTIVE: return "active";
case INACTIVE: return "inactive";
case ENTEREDINERROR: return "entered-in-error";
case NULL: return null;
default: return "?";
}
}
@ -88,6 +89,7 @@ public class Flag extends DomainResource {
case ACTIVE: return "http://hl7.org/fhir/flag-status";
case INACTIVE: return "http://hl7.org/fhir/flag-status";
case ENTEREDINERROR: return "http://hl7.org/fhir/flag-status";
case NULL: return null;
default: return "?";
}
}
@ -96,6 +98,7 @@ public class Flag extends DomainResource {
case ACTIVE: return "A current flag that should be displayed to a user. A system may use the category to determine which roles should view the flag.";
case INACTIVE: return "The flag does not need to be displayed any more.";
case ENTEREDINERROR: return "The flag was added in error, and should no longer be displayed.";
case NULL: return null;
default: return "?";
}
}
@ -104,6 +107,7 @@ public class Flag extends DomainResource {
case ACTIVE: return "Active";
case INACTIVE: return "Inactive";
case ENTEREDINERROR: return "Entered in Error";
case NULL: return null;
default: return "?";
}
}

View File

@ -125,6 +125,7 @@ public class Goal extends DomainResource {
case SUSTAINING: return "sustaining";
case ONHOLD: return "on-hold";
case CANCELLED: return "cancelled";
case NULL: return null;
default: return "?";
}
}
@ -139,6 +140,7 @@ public class Goal extends DomainResource {
case SUSTAINING: return "http://hl7.org/fhir/goal-status";
case ONHOLD: return "http://hl7.org/fhir/goal-status";
case CANCELLED: return "http://hl7.org/fhir/goal-status";
case NULL: return null;
default: return "?";
}
}
@ -153,6 +155,7 @@ public class Goal extends DomainResource {
case SUSTAINING: return "The goal has been met, but ongoing activity is needed to sustain the goal objective";
case ONHOLD: return "The goal remains a long term objective but is no longer being actively pursued for a temporary period of time.";
case CANCELLED: return "The goal is no longer being sought";
case NULL: return null;
default: return "?";
}
}
@ -167,6 +170,7 @@ public class Goal extends DomainResource {
case SUSTAINING: return "Sustaining";
case ONHOLD: return "On Hold";
case CANCELLED: return "Cancelled";
case NULL: return null;
default: return "?";
}
}

View File

@ -104,6 +104,7 @@ public class Group extends DomainResource {
case DEVICE: return "device";
case MEDICATION: return "medication";
case SUBSTANCE: return "substance";
case NULL: return null;
default: return "?";
}
}
@ -115,6 +116,7 @@ public class Group extends DomainResource {
case DEVICE: return "http://hl7.org/fhir/group-type";
case MEDICATION: return "http://hl7.org/fhir/group-type";
case SUBSTANCE: return "http://hl7.org/fhir/group-type";
case NULL: return null;
default: return "?";
}
}
@ -126,6 +128,7 @@ public class Group extends DomainResource {
case DEVICE: return "Group contains Device resources";
case MEDICATION: return "Group contains Medication resources";
case SUBSTANCE: return "Group contains Substance resources";
case NULL: return null;
default: return "?";
}
}
@ -137,6 +140,7 @@ public class Group extends DomainResource {
case DEVICE: return "Device";
case MEDICATION: return "Medication";
case SUBSTANCE: return "Substance";
case NULL: return null;
default: return "?";
}
}

View File

@ -111,6 +111,7 @@ public class HealthcareService extends DomainResource {
case FRI: return "fri";
case SAT: return "sat";
case SUN: return "sun";
case NULL: return null;
default: return "?";
}
}
@ -123,6 +124,7 @@ public class HealthcareService extends DomainResource {
case FRI: return "http://hl7.org/fhir/days-of-week";
case SAT: return "http://hl7.org/fhir/days-of-week";
case SUN: return "http://hl7.org/fhir/days-of-week";
case NULL: return null;
default: return "?";
}
}
@ -135,6 +137,7 @@ public class HealthcareService extends DomainResource {
case FRI: return "Friday";
case SAT: return "Saturday";
case SUN: return "Sunday";
case NULL: return null;
default: return "?";
}
}
@ -147,6 +150,7 @@ public class HealthcareService extends DomainResource {
case FRI: return "Friday";
case SAT: return "Saturday";
case SUN: return "Sunday";
case NULL: return null;
default: return "?";
}
}

View File

@ -109,6 +109,7 @@ public class HumanName extends Type implements ICompositeType {
case ANONYMOUS: return "anonymous";
case OLD: return "old";
case MAIDEN: return "maiden";
case NULL: return null;
default: return "?";
}
}
@ -121,6 +122,7 @@ public class HumanName extends Type implements ICompositeType {
case ANONYMOUS: return "http://hl7.org/fhir/name-use";
case OLD: return "http://hl7.org/fhir/name-use";
case MAIDEN: return "http://hl7.org/fhir/name-use";
case NULL: return null;
default: return "?";
}
}
@ -133,6 +135,7 @@ public class HumanName extends Type implements ICompositeType {
case ANONYMOUS: return "Anonymous assigned name, alias, or pseudonym (used to protect a person's identity for privacy reasons)";
case OLD: return "This name is no longer in use (or was never correct, but retained for records)";
case MAIDEN: return "A name used prior to marriage. Marriage naming customs vary greatly around the world. This name use is for use by applications that collect and store \"maiden\" names. Though the concept of maiden name is often gender specific, the use of this term is not gender specific. The use of this term does not imply any particular history for a person's name, nor should the maiden name be determined algorithmically.";
case NULL: return null;
default: return "?";
}
}
@ -145,6 +148,7 @@ public class HumanName extends Type implements ICompositeType {
case ANONYMOUS: return "Anonymous";
case OLD: return "Old";
case MAIDEN: return "Maiden";
case NULL: return null;
default: return "?";
}
}

View File

@ -87,6 +87,7 @@ public class Identifier extends Type implements ICompositeType {
case OFFICIAL: return "official";
case TEMP: return "temp";
case SECONDARY: return "secondary";
case NULL: return null;
default: return "?";
}
}
@ -96,6 +97,7 @@ public class Identifier extends Type implements ICompositeType {
case OFFICIAL: return "http://hl7.org/fhir/identifier-use";
case TEMP: return "http://hl7.org/fhir/identifier-use";
case SECONDARY: return "http://hl7.org/fhir/identifier-use";
case NULL: return null;
default: return "?";
}
}
@ -105,6 +107,7 @@ public class Identifier extends Type implements ICompositeType {
case OFFICIAL: return "The identifier considered to be most trusted for the identification of this item.";
case TEMP: return "A temporary identifier.";
case SECONDARY: return "An identifier that was assigned in secondary use - it serves to identify the object in a relative context, but cannot be consistently assigned to the same object again in a different context.";
case NULL: return null;
default: return "?";
}
}
@ -114,6 +117,7 @@ public class Identifier extends Type implements ICompositeType {
case OFFICIAL: return "Official";
case TEMP: return "Temp";
case SECONDARY: return "Secondary";
case NULL: return null;
default: return "?";
}
}

View File

@ -91,6 +91,7 @@ public class ImagingStudy extends DomainResource {
case OFFLINE: return "OFFLINE";
case NEARLINE: return "NEARLINE";
case UNAVAILABLE: return "UNAVAILABLE";
case NULL: return null;
default: return "?";
}
}
@ -100,6 +101,7 @@ public class ImagingStudy extends DomainResource {
case OFFLINE: return "http://nema.org/dicom/dicm";
case NEARLINE: return "http://nema.org/dicom/dicm";
case UNAVAILABLE: return "http://nema.org/dicom/dicm";
case NULL: return null;
default: return "?";
}
}
@ -109,6 +111,7 @@ public class ImagingStudy extends DomainResource {
case OFFLINE: return "";
case NEARLINE: return "";
case UNAVAILABLE: return "";
case NULL: return null;
default: return "?";
}
}
@ -118,6 +121,7 @@ public class ImagingStudy extends DomainResource {
case OFFLINE: return "OFFLINE";
case NEARLINE: return "NEARLINE";
case UNAVAILABLE: return "UNAVAILABLE";
case NULL: return null;
default: return "?";
}
}

View File

@ -79,6 +79,7 @@ public class ImplementationGuide extends DomainResource {
switch (this) {
case REFERENCE: return "reference";
case INCLUSION: return "inclusion";
case NULL: return null;
default: return "?";
}
}
@ -86,6 +87,7 @@ public class ImplementationGuide extends DomainResource {
switch (this) {
case REFERENCE: return "http://hl7.org/fhir/guide-dependency-type";
case INCLUSION: return "http://hl7.org/fhir/guide-dependency-type";
case NULL: return null;
default: return "?";
}
}
@ -93,6 +95,7 @@ public class ImplementationGuide extends DomainResource {
switch (this) {
case REFERENCE: return "The guide is referred to by URL.";
case INCLUSION: return "The guide is embedded in this guide when published.";
case NULL: return null;
default: return "?";
}
}
@ -100,6 +103,7 @@ public class ImplementationGuide extends DomainResource {
switch (this) {
case REFERENCE: return "Reference";
case INCLUSION: return "Inclusion";
case NULL: return null;
default: return "?";
}
}
@ -191,6 +195,7 @@ public class ImplementationGuide extends DomainResource {
case EXTENSION: return "extension";
case DICTIONARY: return "dictionary";
case LOGICAL: return "logical";
case NULL: return null;
default: return "?";
}
}
@ -202,6 +207,7 @@ public class ImplementationGuide extends DomainResource {
case EXTENSION: return "http://hl7.org/fhir/guide-resource-purpose";
case DICTIONARY: return "http://hl7.org/fhir/guide-resource-purpose";
case LOGICAL: return "http://hl7.org/fhir/guide-resource-purpose";
case NULL: return null;
default: return "?";
}
}
@ -213,6 +219,7 @@ public class ImplementationGuide extends DomainResource {
case EXTENSION: return "The resource defines an extension (StructureDefinition) that is used in the implementation guide.";
case DICTIONARY: return "The resource contains a dictionary that is part of the implementation guide.";
case LOGICAL: return "The resource defines a logical model (in a StructureDefinition) that is used in the implementation guide.";
case NULL: return null;
default: return "?";
}
}
@ -224,6 +231,7 @@ public class ImplementationGuide extends DomainResource {
case EXTENSION: return "Extension";
case DICTIONARY: return "Dictionary";
case LOGICAL: return "Logical Model";
case NULL: return null;
default: return "?";
}
}
@ -353,6 +361,7 @@ public class ImplementationGuide extends DomainResource {
case DICTIONARY: return "dictionary";
case TOC: return "toc";
case RESOURCE: return "resource";
case NULL: return null;
default: return "?";
}
}
@ -366,6 +375,7 @@ public class ImplementationGuide extends DomainResource {
case DICTIONARY: return "http://hl7.org/fhir/guide-page-kind";
case TOC: return "http://hl7.org/fhir/guide-page-kind";
case RESOURCE: return "http://hl7.org/fhir/guide-page-kind";
case NULL: return null;
default: return "?";
}
}
@ -379,6 +389,7 @@ public class ImplementationGuide extends DomainResource {
case DICTIONARY: return "This is a page that creates the listed resources as a dictionary.";
case TOC: return "This is a generated page that contains the table of contents.";
case RESOURCE: return "This is a page that represents a presented resource. This is typically used for generated conformance resource presentations.";
case NULL: return null;
default: return "?";
}
}
@ -392,6 +403,7 @@ public class ImplementationGuide extends DomainResource {
case DICTIONARY: return "Dictionary";
case TOC: return "Table Of Contents";
case RESOURCE: return "Resource";
case NULL: return null;
default: return "?";
}
}

View File

@ -84,6 +84,7 @@ public class List_ extends DomainResource {
case CURRENT: return "current";
case RETIRED: return "retired";
case ENTEREDINERROR: return "entered-in-error";
case NULL: return null;
default: return "?";
}
}
@ -92,6 +93,7 @@ public class List_ extends DomainResource {
case CURRENT: return "http://hl7.org/fhir/list-status";
case RETIRED: return "http://hl7.org/fhir/list-status";
case ENTEREDINERROR: return "http://hl7.org/fhir/list-status";
case NULL: return null;
default: return "?";
}
}
@ -100,6 +102,7 @@ public class List_ extends DomainResource {
case CURRENT: return "The list is considered to be an active part of the patient's record.";
case RETIRED: return "The list is \"old\" and should no longer be considered accurate or relevant.";
case ENTEREDINERROR: return "The list was never accurate. It is retained for medico-legal purposes only.";
case NULL: return null;
default: return "?";
}
}
@ -108,6 +111,7 @@ public class List_ extends DomainResource {
case CURRENT: return "Current";
case RETIRED: return "Retired";
case ENTEREDINERROR: return "Entered In Error";
case NULL: return null;
default: return "?";
}
}
@ -184,6 +188,7 @@ public class List_ extends DomainResource {
case WORKING: return "working";
case SNAPSHOT: return "snapshot";
case CHANGES: return "changes";
case NULL: return null;
default: return "?";
}
}
@ -192,6 +197,7 @@ public class List_ extends DomainResource {
case WORKING: return "http://hl7.org/fhir/list-mode";
case SNAPSHOT: return "http://hl7.org/fhir/list-mode";
case CHANGES: return "http://hl7.org/fhir/list-mode";
case NULL: return null;
default: return "?";
}
}
@ -200,6 +206,7 @@ public class List_ extends DomainResource {
case WORKING: return "This list is the master list, maintained in an ongoing fashion with regular updates as the real world list it is tracking changes";
case SNAPSHOT: return "This list was prepared as a snapshot. It should not be assumed to be current";
case CHANGES: return "A list that indicates where changes have been made or recommended";
case NULL: return null;
default: return "?";
}
}
@ -208,6 +215,7 @@ public class List_ extends DomainResource {
case WORKING: return "Working List";
case SNAPSHOT: return "Snapshot List";
case CHANGES: return "Change List";
case NULL: return null;
default: return "?";
}
}

View File

@ -85,6 +85,7 @@ public class Location extends DomainResource {
case ACTIVE: return "active";
case SUSPENDED: return "suspended";
case INACTIVE: return "inactive";
case NULL: return null;
default: return "?";
}
}
@ -93,6 +94,7 @@ public class Location extends DomainResource {
case ACTIVE: return "http://hl7.org/fhir/location-status";
case SUSPENDED: return "http://hl7.org/fhir/location-status";
case INACTIVE: return "http://hl7.org/fhir/location-status";
case NULL: return null;
default: return "?";
}
}
@ -101,6 +103,7 @@ public class Location extends DomainResource {
case ACTIVE: return "The location is operational.";
case SUSPENDED: return "The location is temporarily closed.";
case INACTIVE: return "The location is no longer used.";
case NULL: return null;
default: return "?";
}
}
@ -109,6 +112,7 @@ public class Location extends DomainResource {
case ACTIVE: return "Active";
case SUSPENDED: return "Suspended";
case INACTIVE: return "Inactive";
case NULL: return null;
default: return "?";
}
}
@ -178,6 +182,7 @@ public class Location extends DomainResource {
switch (this) {
case INSTANCE: return "instance";
case KIND: return "kind";
case NULL: return null;
default: return "?";
}
}
@ -185,6 +190,7 @@ public class Location extends DomainResource {
switch (this) {
case INSTANCE: return "http://hl7.org/fhir/location-mode";
case KIND: return "http://hl7.org/fhir/location-mode";
case NULL: return null;
default: return "?";
}
}
@ -192,6 +198,7 @@ public class Location extends DomainResource {
switch (this) {
case INSTANCE: return "The Location resource represents a specific instance of a location (e.g. Operating Theatre 1A).";
case KIND: return "The Location represents a class of locations (e.g. Any Operating Theatre) although this class of locations could be constrained within a specific boundary (such as organization, or parent location, address etc.).";
case NULL: return null;
default: return "?";
}
}
@ -199,6 +206,7 @@ public class Location extends DomainResource {
switch (this) {
case INSTANCE: return "Instance";
case KIND: return "Kind";
case NULL: return null;
default: return "?";
}
}

View File

@ -81,6 +81,7 @@ public class Media extends DomainResource {
case PHOTO: return "photo";
case VIDEO: return "video";
case AUDIO: return "audio";
case NULL: return null;
default: return "?";
}
}
@ -89,6 +90,7 @@ public class Media extends DomainResource {
case PHOTO: return "http://hl7.org/fhir/digital-media-type";
case VIDEO: return "http://hl7.org/fhir/digital-media-type";
case AUDIO: return "http://hl7.org/fhir/digital-media-type";
case NULL: return null;
default: return "?";
}
}
@ -97,6 +99,7 @@ public class Media extends DomainResource {
case PHOTO: return "The media consists of one or more unmoving images, including photographs, computer-generated graphs and charts, and scanned documents";
case VIDEO: return "The media consists of a series of frames that capture a moving image";
case AUDIO: return "The media consists of a sound recording";
case NULL: return null;
default: return "?";
}
}
@ -105,6 +108,7 @@ public class Media extends DomainResource {
case PHOTO: return "Photo";
case VIDEO: return "Video";
case AUDIO: return "Audio";
case NULL: return null;
default: return "?";
}
}

View File

@ -97,6 +97,7 @@ public class MedicationAdministration extends DomainResource {
case COMPLETED: return "completed";
case ENTEREDINERROR: return "entered-in-error";
case STOPPED: return "stopped";
case NULL: return null;
default: return "?";
}
}
@ -107,6 +108,7 @@ public class MedicationAdministration extends DomainResource {
case COMPLETED: return "http://hl7.org/fhir/medication-admin-status";
case ENTEREDINERROR: return "http://hl7.org/fhir/medication-admin-status";
case STOPPED: return "http://hl7.org/fhir/medication-admin-status";
case NULL: return null;
default: return "?";
}
}
@ -117,6 +119,7 @@ public class MedicationAdministration extends DomainResource {
case COMPLETED: return "All actions that are implied by the administration have occurred.";
case ENTEREDINERROR: return "The administration was entered in error and therefore nullified.";
case STOPPED: return "Actions implied by the administration have been permanently halted, before all of them occurred.";
case NULL: return null;
default: return "?";
}
}
@ -127,6 +130,7 @@ public class MedicationAdministration extends DomainResource {
case COMPLETED: return "Completed";
case ENTEREDINERROR: return "Entered in Error";
case STOPPED: return "Stopped";
case NULL: return null;
default: return "?";
}
}

View File

@ -98,6 +98,7 @@ public class MedicationDispense extends DomainResource {
case COMPLETED: return "completed";
case ENTEREDINERROR: return "entered-in-error";
case STOPPED: return "stopped";
case NULL: return null;
default: return "?";
}
}
@ -108,6 +109,7 @@ public class MedicationDispense extends DomainResource {
case COMPLETED: return "http://hl7.org/fhir/medication-dispense-status";
case ENTEREDINERROR: return "http://hl7.org/fhir/medication-dispense-status";
case STOPPED: return "http://hl7.org/fhir/medication-dispense-status";
case NULL: return null;
default: return "?";
}
}
@ -118,6 +120,7 @@ public class MedicationDispense extends DomainResource {
case COMPLETED: return "All actions that are implied by the dispense have occurred.";
case ENTEREDINERROR: return "The dispense was entered in error and therefore nullified.";
case STOPPED: return "Actions implied by the dispense have been permanently halted, before all of them occurred.";
case NULL: return null;
default: return "?";
}
}
@ -128,6 +131,7 @@ public class MedicationDispense extends DomainResource {
case COMPLETED: return "Completed";
case ENTEREDINERROR: return "Entered in-Error";
case STOPPED: return "Stopped";
case NULL: return null;
default: return "?";
}
}

View File

@ -105,6 +105,7 @@ public class MedicationOrder extends DomainResource {
case ENTEREDINERROR: return "entered-in-error";
case STOPPED: return "stopped";
case DRAFT: return "draft";
case NULL: return null;
default: return "?";
}
}
@ -116,6 +117,7 @@ public class MedicationOrder extends DomainResource {
case ENTEREDINERROR: return "http://hl7.org/fhir/medication-order-status";
case STOPPED: return "http://hl7.org/fhir/medication-order-status";
case DRAFT: return "http://hl7.org/fhir/medication-order-status";
case NULL: return null;
default: return "?";
}
}
@ -127,6 +129,7 @@ public class MedicationOrder extends DomainResource {
case ENTEREDINERROR: return "The prescription was entered in error.";
case STOPPED: return "Actions implied by the prescription are to be permanently halted, before all of them occurred.";
case DRAFT: return "The prescription is not yet 'actionable', i.e. it is a work in progress, requires sign-off or verification, and needs to be run through decision support process.";
case NULL: return null;
default: return "?";
}
}
@ -138,6 +141,7 @@ public class MedicationOrder extends DomainResource {
case ENTEREDINERROR: return "Entered In Error";
case STOPPED: return "Stopped";
case DRAFT: return "Draft";
case NULL: return null;
default: return "?";
}
}

View File

@ -93,6 +93,7 @@ public class MedicationStatement extends DomainResource {
case COMPLETED: return "completed";
case ENTEREDINERROR: return "entered-in-error";
case INTENDED: return "intended";
case NULL: return null;
default: return "?";
}
}
@ -102,6 +103,7 @@ public class MedicationStatement extends DomainResource {
case COMPLETED: return "http://hl7.org/fhir/medication-statement-status";
case ENTEREDINERROR: return "http://hl7.org/fhir/medication-statement-status";
case INTENDED: return "http://hl7.org/fhir/medication-statement-status";
case NULL: return null;
default: return "?";
}
}
@ -111,6 +113,7 @@ public class MedicationStatement extends DomainResource {
case COMPLETED: return "The medication is no longer being taken.";
case ENTEREDINERROR: return "The statement was entered in error.";
case INTENDED: return "The medication may be taken at some time in the future.";
case NULL: return null;
default: return "?";
}
}
@ -120,6 +123,7 @@ public class MedicationStatement extends DomainResource {
case COMPLETED: return "Completed";
case ENTEREDINERROR: return "Entered in Error";
case INTENDED: return "Intended";
case NULL: return null;
default: return "?";
}
}

View File

@ -84,6 +84,7 @@ public class MessageHeader extends DomainResource {
case OK: return "ok";
case TRANSIENTERROR: return "transient-error";
case FATALERROR: return "fatal-error";
case NULL: return null;
default: return "?";
}
}
@ -92,6 +93,7 @@ public class MessageHeader extends DomainResource {
case OK: return "http://hl7.org/fhir/response-code";
case TRANSIENTERROR: return "http://hl7.org/fhir/response-code";
case FATALERROR: return "http://hl7.org/fhir/response-code";
case NULL: return null;
default: return "?";
}
}
@ -100,6 +102,7 @@ public class MessageHeader extends DomainResource {
case OK: return "The message was accepted and processed without error.";
case TRANSIENTERROR: return "Some internal unexpected error occurred - wait and try again. Note - this is usually used for things like database unavailable, which may be expected to resolve, though human intervention may be required.";
case FATALERROR: return "The message was rejected because of some content in it. There is no point in re-sending without change. The response narrative SHALL describe the issue.";
case NULL: return null;
default: return "?";
}
}
@ -108,6 +111,7 @@ public class MessageHeader extends DomainResource {
case OK: return "OK";
case TRANSIENTERROR: return "Transient Error";
case FATALERROR: return "Fatal Error";
case NULL: return null;
default: return "?";
}
}

View File

@ -86,6 +86,7 @@ public class NamingSystem extends DomainResource {
case CODESYSTEM: return "codesystem";
case IDENTIFIER: return "identifier";
case ROOT: return "root";
case NULL: return null;
default: return "?";
}
}
@ -94,6 +95,7 @@ public class NamingSystem extends DomainResource {
case CODESYSTEM: return "http://hl7.org/fhir/namingsystem-type";
case IDENTIFIER: return "http://hl7.org/fhir/namingsystem-type";
case ROOT: return "http://hl7.org/fhir/namingsystem-type";
case NULL: return null;
default: return "?";
}
}
@ -102,6 +104,7 @@ public class NamingSystem extends DomainResource {
case CODESYSTEM: return "The naming system is used to define concepts and symbols to represent those concepts; e.g. UCUM, LOINC, NDC code, local lab codes, etc.";
case IDENTIFIER: return "The naming system is used to manage identifiers (e.g. license numbers, order numbers, etc.).";
case ROOT: return "The naming system is used as the root for other identifiers and naming systems.";
case NULL: return null;
default: return "?";
}
}
@ -110,6 +113,7 @@ public class NamingSystem extends DomainResource {
case CODESYSTEM: return "Code System";
case IDENTIFIER: return "Identifier";
case ROOT: return "Root";
case NULL: return null;
default: return "?";
}
}
@ -193,6 +197,7 @@ public class NamingSystem extends DomainResource {
case UUID: return "uuid";
case URI: return "uri";
case OTHER: return "other";
case NULL: return null;
default: return "?";
}
}
@ -202,6 +207,7 @@ public class NamingSystem extends DomainResource {
case UUID: return "http://hl7.org/fhir/namingsystem-identifier-type";
case URI: return "http://hl7.org/fhir/namingsystem-identifier-type";
case OTHER: return "http://hl7.org/fhir/namingsystem-identifier-type";
case NULL: return null;
default: return "?";
}
}
@ -211,6 +217,7 @@ public class NamingSystem extends DomainResource {
case UUID: return "A universally unique identifier of the form a5afddf4-e880-459b-876e-e4591b0acc11.";
case URI: return "A uniform resource identifier (ideally a URL - uniform resource locator); e.g. http://unitsofmeasure.org.";
case OTHER: return "Some other type of unique identifier; e.g. HL7-assigned reserved string such as LN for LOINC.";
case NULL: return null;
default: return "?";
}
}
@ -220,6 +227,7 @@ public class NamingSystem extends DomainResource {
case UUID: return "UUID";
case URI: return "URI";
case OTHER: return "Other";
case NULL: return null;
default: return "?";
}
}

View File

@ -87,6 +87,7 @@ public class Narrative extends BaseNarrative implements INarrative {
case EXTENSIONS: return "extensions";
case ADDITIONAL: return "additional";
case EMPTY: return "empty";
case NULL: return null;
default: return "?";
}
}
@ -96,6 +97,7 @@ public class Narrative extends BaseNarrative implements INarrative {
case EXTENSIONS: return "http://hl7.org/fhir/narrative-status";
case ADDITIONAL: return "http://hl7.org/fhir/narrative-status";
case EMPTY: return "http://hl7.org/fhir/narrative-status";
case NULL: return null;
default: return "?";
}
}
@ -105,6 +107,7 @@ public class Narrative extends BaseNarrative implements INarrative {
case EXTENSIONS: return "The contents of the narrative are entirely generated from the structured data in the content and some of the content is generated from extensions";
case ADDITIONAL: return "The contents of the narrative contain additional information not found in the structured data";
case EMPTY: return "The contents of the narrative are some equivalent of \"No human-readable text provided in this case\"";
case NULL: return null;
default: return "?";
}
}
@ -114,6 +117,7 @@ public class Narrative extends BaseNarrative implements INarrative {
case EXTENSIONS: return "Extensions";
case ADDITIONAL: return "Additional";
case EMPTY: return "Empty";
case NULL: return null;
default: return "?";
}
}

View File

@ -119,6 +119,7 @@ public class NutritionOrder extends DomainResource {
case ONHOLD: return "on-hold";
case COMPLETED: return "completed";
case CANCELLED: return "cancelled";
case NULL: return null;
default: return "?";
}
}
@ -132,6 +133,7 @@ public class NutritionOrder extends DomainResource {
case ONHOLD: return "http://hl7.org/fhir/nutrition-order-status";
case COMPLETED: return "http://hl7.org/fhir/nutrition-order-status";
case CANCELLED: return "http://hl7.org/fhir/nutrition-order-status";
case NULL: return null;
default: return "?";
}
}
@ -145,6 +147,7 @@ public class NutritionOrder extends DomainResource {
case ONHOLD: return "Actions implied by the request have been temporarily halted, but are expected to continue later. May also be called \"suspended\".";
case COMPLETED: return "All actions that are implied by the order have occurred and no continuation is planned (this will rarely be made explicit).";
case CANCELLED: return "The request has been withdrawn and is no longer actionable.";
case NULL: return null;
default: return "?";
}
}
@ -158,6 +161,7 @@ public class NutritionOrder extends DomainResource {
case ONHOLD: return "On-Hold";
case COMPLETED: return "Completed";
case CANCELLED: return "Cancelled";
case NULL: return null;
default: return "?";
}
}

View File

@ -112,6 +112,7 @@ public class Observation extends DomainResource {
case CANCELLED: return "cancelled";
case ENTEREDINERROR: return "entered-in-error";
case UNKNOWN: return "unknown";
case NULL: return null;
default: return "?";
}
}
@ -124,6 +125,7 @@ public class Observation extends DomainResource {
case CANCELLED: return "http://hl7.org/fhir/observation-status";
case ENTEREDINERROR: return "http://hl7.org/fhir/observation-status";
case UNKNOWN: return "http://hl7.org/fhir/observation-status";
case NULL: return null;
default: return "?";
}
}
@ -136,6 +138,7 @@ public class Observation extends DomainResource {
case CANCELLED: return "The observation is unavailable because the measurement was not started or not completed (also sometimes called \"aborted\").";
case ENTEREDINERROR: return "The observation has been withdrawn following previous final release.";
case UNKNOWN: return "The observation status is unknown. Note that \"unknown\" is a value of last resort and every attempt should be made to provide a meaningful value other than \"unknown\".";
case NULL: return null;
default: return "?";
}
}
@ -148,6 +151,7 @@ public class Observation extends DomainResource {
case CANCELLED: return "cancelled";
case ENTEREDINERROR: return "Entered in Error";
case UNKNOWN: return "Unknown Status";
case NULL: return null;
default: return "?";
}
}
@ -269,6 +273,7 @@ public class Observation extends DomainResource {
case REPLACES: return "replaces";
case QUALIFIEDBY: return "qualified-by";
case INTERFEREDBY: return "interfered-by";
case NULL: return null;
default: return "?";
}
}
@ -280,6 +285,7 @@ public class Observation extends DomainResource {
case REPLACES: return "http://hl7.org/fhir/observation-relationshiptypes";
case QUALIFIEDBY: return "http://hl7.org/fhir/observation-relationshiptypes";
case INTERFEREDBY: return "http://hl7.org/fhir/observation-relationshiptypes";
case NULL: return null;
default: return "?";
}
}
@ -291,6 +297,7 @@ public class Observation extends DomainResource {
case REPLACES: return "This observation replaces a previous observation (i.e. a revised value). The target observation is now obsolete.";
case QUALIFIEDBY: return "The value of the target observation qualifies (refines) the semantics of the source observation (e.g. a lipemia measure target from a plasma measure).";
case INTERFEREDBY: return "The value of the target observation interferes (degrades quality, or prevents valid observation) with the semantics of the source observation (e.g. a hemolysis measure target from a plasma potassium measure which has no value).";
case NULL: return null;
default: return "?";
}
}
@ -302,6 +309,7 @@ public class Observation extends DomainResource {
case REPLACES: return "Replaces";
case QUALIFIEDBY: return "Qualified By";
case INTERFEREDBY: return "Interfered By";
case NULL: return null;
default: return "?";
}
}

View File

@ -81,6 +81,7 @@ public class OperationDefinition extends DomainResource {
switch (this) {
case OPERATION: return "operation";
case QUERY: return "query";
case NULL: return null;
default: return "?";
}
}
@ -88,6 +89,7 @@ public class OperationDefinition extends DomainResource {
switch (this) {
case OPERATION: return "http://hl7.org/fhir/operation-kind";
case QUERY: return "http://hl7.org/fhir/operation-kind";
case NULL: return null;
default: return "?";
}
}
@ -95,6 +97,7 @@ public class OperationDefinition extends DomainResource {
switch (this) {
case OPERATION: return "This operation is invoked as an operation.";
case QUERY: return "This operation is a named query, invoked using the search mechanism.";
case NULL: return null;
default: return "?";
}
}
@ -102,6 +105,7 @@ public class OperationDefinition extends DomainResource {
switch (this) {
case OPERATION: return "Operation";
case QUERY: return "Query";
case NULL: return null;
default: return "?";
}
}
@ -165,6 +169,7 @@ public class OperationDefinition extends DomainResource {
switch (this) {
case IN: return "in";
case OUT: return "out";
case NULL: return null;
default: return "?";
}
}
@ -172,6 +177,7 @@ public class OperationDefinition extends DomainResource {
switch (this) {
case IN: return "http://hl7.org/fhir/operation-parameter-use";
case OUT: return "http://hl7.org/fhir/operation-parameter-use";
case NULL: return null;
default: return "?";
}
}
@ -179,6 +185,7 @@ public class OperationDefinition extends DomainResource {
switch (this) {
case IN: return "This is an input parameter.";
case OUT: return "This is an output parameter.";
case NULL: return null;
default: return "?";
}
}
@ -186,6 +193,7 @@ public class OperationDefinition extends DomainResource {
switch (this) {
case IN: return "In";
case OUT: return "Out";
case NULL: return null;
default: return "?";
}
}

View File

@ -90,6 +90,7 @@ public class OperationOutcome extends DomainResource implements IBaseOperationOu
case ERROR: return "error";
case WARNING: return "warning";
case INFORMATION: return "information";
case NULL: return null;
default: return "?";
}
}
@ -99,6 +100,7 @@ public class OperationOutcome extends DomainResource implements IBaseOperationOu
case ERROR: return "http://hl7.org/fhir/issue-severity";
case WARNING: return "http://hl7.org/fhir/issue-severity";
case INFORMATION: return "http://hl7.org/fhir/issue-severity";
case NULL: return null;
default: return "?";
}
}
@ -108,6 +110,7 @@ public class OperationOutcome extends DomainResource implements IBaseOperationOu
case ERROR: return "The issue is sufficiently important to cause the action to fail.";
case WARNING: return "The issue is not important enough to cause the action to fail, but may cause it to be performed suboptimally or in a way that is not as desired.";
case INFORMATION: return "The issue has no relation to the degree of success of the action.";
case NULL: return null;
default: return "?";
}
}
@ -117,6 +120,7 @@ public class OperationOutcome extends DomainResource implements IBaseOperationOu
case ERROR: return "Error";
case WARNING: return "Warning";
case INFORMATION: return "Information";
case NULL: return null;
default: return "?";
}
}
@ -381,6 +385,7 @@ public class OperationOutcome extends DomainResource implements IBaseOperationOu
case TIMEOUT: return "timeout";
case THROTTLED: return "throttled";
case INFORMATIONAL: return "informational";
case NULL: return null;
default: return "?";
}
}
@ -415,6 +420,7 @@ public class OperationOutcome extends DomainResource implements IBaseOperationOu
case TIMEOUT: return "http://hl7.org/fhir/issue-type";
case THROTTLED: return "http://hl7.org/fhir/issue-type";
case INFORMATIONAL: return "http://hl7.org/fhir/issue-type";
case NULL: return null;
default: return "?";
}
}
@ -449,6 +455,7 @@ public class OperationOutcome extends DomainResource implements IBaseOperationOu
case TIMEOUT: return "An internal timeout has occurred.";
case THROTTLED: return "The system is not prepared to handle this request due to load management.";
case INFORMATIONAL: return "A message unrelated to the processing success of the completed operation (examples of the latter include things like reminders of password expiry, system maintenance times, etc.).";
case NULL: return null;
default: return "?";
}
}
@ -483,6 +490,7 @@ public class OperationOutcome extends DomainResource implements IBaseOperationOu
case TIMEOUT: return "Timeout";
case THROTTLED: return "Throttled";
case INFORMATIONAL: return "Informational Note";
case NULL: return null;
default: return "?";
}
}

View File

@ -124,6 +124,7 @@ public class OrderResponse extends DomainResource {
case REPLACED: return "replaced";
case ABORTED: return "aborted";
case COMPLETED: return "completed";
case NULL: return null;
default: return "?";
}
}
@ -138,6 +139,7 @@ public class OrderResponse extends DomainResource {
case REPLACED: return "http://hl7.org/fhir/order-status";
case ABORTED: return "http://hl7.org/fhir/order-status";
case COMPLETED: return "http://hl7.org/fhir/order-status";
case NULL: return null;
default: return "?";
}
}
@ -152,6 +154,7 @@ public class OrderResponse extends DomainResource {
case REPLACED: return "The order has been cancelled and replaced by another.";
case ABORTED: return "Processing the order was stopped because of some workflow/business logic reason.";
case COMPLETED: return "The order has been completed.";
case NULL: return null;
default: return "?";
}
}
@ -166,6 +169,7 @@ public class OrderResponse extends DomainResource {
case REPLACED: return "Replaced";
case ABORTED: return "Aborted";
case COMPLETED: return "Completed";
case NULL: return null;
default: return "?";
}
}

View File

@ -85,6 +85,7 @@ public class Patient extends DomainResource {
case REPLACE: return "replace";
case REFER: return "refer";
case SEEALSO: return "seealso";
case NULL: return null;
default: return "?";
}
}
@ -93,6 +94,7 @@ public class Patient extends DomainResource {
case REPLACE: return "http://hl7.org/fhir/link-type";
case REFER: return "http://hl7.org/fhir/link-type";
case SEEALSO: return "http://hl7.org/fhir/link-type";
case NULL: return null;
default: return "?";
}
}
@ -101,6 +103,7 @@ public class Patient extends DomainResource {
case REPLACE: return "The patient resource containing this link must no longer be used. The link points forward to another patient resource that must be used in lieu of the patient resource that contains this link.";
case REFER: return "The patient resource containing this link is in use and valid but not considered the main source of information about a patient. The link points forward to another patient resource that should be consulted to retrieve additional patient information.";
case SEEALSO: return "The patient resource containing this link is in use and valid, but points to another patient resource that is known to contain data about the same person. Data in this resource might overlap or contradict information found in the other patient resource. This link does not indicate any relative importance of the resources concerned, and both should be regarded as equally valid.";
case NULL: return null;
default: return "?";
}
}
@ -109,6 +112,7 @@ public class Patient extends DomainResource {
case REPLACE: return "Replace";
case REFER: return "Refer";
case SEEALSO: return "See also";
case NULL: return null;
default: return "?";
}
}

View File

@ -92,6 +92,7 @@ public class Person extends DomainResource {
case LEVEL2: return "level2";
case LEVEL3: return "level3";
case LEVEL4: return "level4";
case NULL: return null;
default: return "?";
}
}
@ -101,6 +102,7 @@ public class Person extends DomainResource {
case LEVEL2: return "http://hl7.org/fhir/identity-assuranceLevel";
case LEVEL3: return "http://hl7.org/fhir/identity-assuranceLevel";
case LEVEL4: return "http://hl7.org/fhir/identity-assuranceLevel";
case NULL: return null;
default: return "?";
}
}
@ -110,6 +112,7 @@ public class Person extends DomainResource {
case LEVEL2: return "Some confidence in the asserted identity's accuracy.";
case LEVEL3: return "High confidence in the asserted identity's accuracy.";
case LEVEL4: return "Very high confidence in the asserted identity's accuracy.";
case NULL: return null;
default: return "?";
}
}
@ -119,6 +122,7 @@ public class Person extends DomainResource {
case LEVEL2: return "Level 2";
case LEVEL3: return "Level 3";
case LEVEL4: return "Level 4";
case NULL: return null;
default: return "?";
}
}

View File

@ -89,6 +89,7 @@ public class Procedure extends DomainResource {
case ABORTED: return "aborted";
case COMPLETED: return "completed";
case ENTEREDINERROR: return "entered-in-error";
case NULL: return null;
default: return "?";
}
}
@ -98,6 +99,7 @@ public class Procedure extends DomainResource {
case ABORTED: return "http://hl7.org/fhir/procedure-status";
case COMPLETED: return "http://hl7.org/fhir/procedure-status";
case ENTEREDINERROR: return "http://hl7.org/fhir/procedure-status";
case NULL: return null;
default: return "?";
}
}
@ -107,6 +109,7 @@ public class Procedure extends DomainResource {
case ABORTED: return "The procedure was terminated without completing successfully.";
case COMPLETED: return "All actions involved in the procedure have taken place.";
case ENTEREDINERROR: return "The statement was entered in error and Is not valid.";
case NULL: return null;
default: return "?";
}
}
@ -116,6 +119,7 @@ public class Procedure extends DomainResource {
case ABORTED: return "Aboted";
case COMPLETED: return "Completed";
case ENTEREDINERROR: return "Entered in Error";
case NULL: return null;
default: return "?";
}
}

View File

@ -130,6 +130,7 @@ public class ProcedureRequest extends DomainResource {
case SUSPENDED: return "suspended";
case REJECTED: return "rejected";
case ABORTED: return "aborted";
case NULL: return null;
default: return "?";
}
}
@ -145,6 +146,7 @@ public class ProcedureRequest extends DomainResource {
case SUSPENDED: return "http://hl7.org/fhir/procedure-request-status";
case REJECTED: return "http://hl7.org/fhir/procedure-request-status";
case ABORTED: return "http://hl7.org/fhir/procedure-request-status";
case NULL: return null;
default: return "?";
}
}
@ -160,6 +162,7 @@ public class ProcedureRequest extends DomainResource {
case SUSPENDED: return "The request has been held by originating system/user request.";
case REJECTED: return "The receiving system has declined to fulfill the request.";
case ABORTED: return "The request was attempted, but due to some procedural error, it could not be completed.";
case NULL: return null;
default: return "?";
}
}
@ -175,6 +178,7 @@ public class ProcedureRequest extends DomainResource {
case SUSPENDED: return "Suspended";
case REJECTED: return "Rejected";
case ABORTED: return "Aborted";
case NULL: return null;
default: return "?";
}
}
@ -300,6 +304,7 @@ public class ProcedureRequest extends DomainResource {
case URGENT: return "urgent";
case STAT: return "stat";
case ASAP: return "asap";
case NULL: return null;
default: return "?";
}
}
@ -309,6 +314,7 @@ public class ProcedureRequest extends DomainResource {
case URGENT: return "http://hl7.org/fhir/procedure-request-priority";
case STAT: return "http://hl7.org/fhir/procedure-request-priority";
case ASAP: return "http://hl7.org/fhir/procedure-request-priority";
case NULL: return null;
default: return "?";
}
}
@ -318,6 +324,7 @@ public class ProcedureRequest extends DomainResource {
case URGENT: return "The request should be done urgently.";
case STAT: return "The request is time-critical.";
case ASAP: return "The request should be acted on as soon as possible.";
case NULL: return null;
default: return "?";
}
}
@ -327,6 +334,7 @@ public class ProcedureRequest extends DomainResource {
case URGENT: return "Urgent";
case STAT: return "Stat";
case ASAP: return "ASAP";
case NULL: return null;
default: return "?";
}
}

View File

@ -91,6 +91,7 @@ public class ProcessRequest extends DomainResource {
case POLL: return "poll";
case REPROCESS: return "reprocess";
case STATUS: return "status";
case NULL: return null;
default: return "?";
}
}
@ -100,6 +101,7 @@ public class ProcessRequest extends DomainResource {
case POLL: return "http://hl7.org/fhir/actionlist";
case REPROCESS: return "http://hl7.org/fhir/actionlist";
case STATUS: return "http://hl7.org/fhir/actionlist";
case NULL: return null;
default: return "?";
}
}
@ -109,6 +111,7 @@ public class ProcessRequest extends DomainResource {
case POLL: return "Check for previously un-read/ not-retrieved resources.";
case REPROCESS: return "Re-process the target resource.";
case STATUS: return "Retrieve the processing status of the target resource.";
case NULL: return null;
default: return "?";
}
}
@ -118,6 +121,7 @@ public class ProcessRequest extends DomainResource {
case POLL: return "Poll";
case REPROCESS: return "Re-Process";
case STATUS: return "Status Check";
case NULL: return null;
default: return "?";
}
}

View File

@ -91,6 +91,7 @@ public class Provenance extends DomainResource {
case REVISION: return "revision";
case QUOTATION: return "quotation";
case SOURCE: return "source";
case NULL: return null;
default: return "?";
}
}
@ -100,6 +101,7 @@ public class Provenance extends DomainResource {
case REVISION: return "http://hl7.org/fhir/provenance-entity-role";
case QUOTATION: return "http://hl7.org/fhir/provenance-entity-role";
case SOURCE: return "http://hl7.org/fhir/provenance-entity-role";
case NULL: return null;
default: return "?";
}
}
@ -109,6 +111,7 @@ public class Provenance extends DomainResource {
case REVISION: return "A derivation for which the resulting entity is a revised version of some original.";
case QUOTATION: return "The repeat of (some or all of) an entity, such as text or image, by someone who may or may not be its original author.";
case SOURCE: return "A primary source for a topic refers to something produced by some agent with direct experience and knowledge about the topic, at the time of the topic's study, without benefit from hindsight.";
case NULL: return null;
default: return "?";
}
}
@ -118,6 +121,7 @@ public class Provenance extends DomainResource {
case REVISION: return "Revision";
case QUOTATION: return "Quotation";
case SOURCE: return "Source";
case NULL: return null;
default: return "?";
}
}

View File

@ -89,6 +89,7 @@ public class Quantity extends Type implements ICompositeType {
case LESS_OR_EQUAL: return "<=";
case GREATER_OR_EQUAL: return ">=";
case GREATER_THAN: return ">";
case NULL: return null;
default: return "?";
}
}
@ -98,6 +99,7 @@ public class Quantity extends Type implements ICompositeType {
case LESS_OR_EQUAL: return "http://hl7.org/fhir/quantity-comparator";
case GREATER_OR_EQUAL: return "http://hl7.org/fhir/quantity-comparator";
case GREATER_THAN: return "http://hl7.org/fhir/quantity-comparator";
case NULL: return null;
default: return "?";
}
}
@ -107,6 +109,7 @@ public class Quantity extends Type implements ICompositeType {
case LESS_OR_EQUAL: return "The actual value is less than or equal to the given value.";
case GREATER_OR_EQUAL: return "The actual value is greater than or equal to the given value.";
case GREATER_THAN: return "The actual value is greater than the given value.";
case NULL: return null;
default: return "?";
}
}
@ -116,6 +119,7 @@ public class Quantity extends Type implements ICompositeType {
case LESS_OR_EQUAL: return "Less or Equal to";
case GREATER_OR_EQUAL: return "Greater or Equal to";
case GREATER_THAN: return "Greater than";
case NULL: return null;
default: return "?";
}
}

View File

@ -84,6 +84,7 @@ public class Questionnaire extends DomainResource {
case DRAFT: return "draft";
case PUBLISHED: return "published";
case RETIRED: return "retired";
case NULL: return null;
default: return "?";
}
}
@ -92,6 +93,7 @@ public class Questionnaire extends DomainResource {
case DRAFT: return "http://hl7.org/fhir/questionnaire-status";
case PUBLISHED: return "http://hl7.org/fhir/questionnaire-status";
case RETIRED: return "http://hl7.org/fhir/questionnaire-status";
case NULL: return null;
default: return "?";
}
}
@ -100,6 +102,7 @@ public class Questionnaire extends DomainResource {
case DRAFT: return "This Questionnaire is not ready for official use.";
case PUBLISHED: return "This Questionnaire is ready for use.";
case RETIRED: return "This Questionnaire should no longer be used to gather data.";
case NULL: return null;
default: return "?";
}
}
@ -108,6 +111,7 @@ public class Questionnaire extends DomainResource {
case DRAFT: return "Draft";
case PUBLISHED: return "Published";
case RETIRED: return "Retired";
case NULL: return null;
default: return "?";
}
}
@ -268,6 +272,7 @@ public class Questionnaire extends DomainResource {
case ATTACHMENT: return "attachment";
case REFERENCE: return "reference";
case QUANTITY: return "quantity";
case NULL: return null;
default: return "?";
}
}
@ -288,6 +293,7 @@ public class Questionnaire extends DomainResource {
case ATTACHMENT: return "http://hl7.org/fhir/answer-format";
case REFERENCE: return "http://hl7.org/fhir/answer-format";
case QUANTITY: return "http://hl7.org/fhir/answer-format";
case NULL: return null;
default: return "?";
}
}
@ -308,6 +314,7 @@ public class Questionnaire extends DomainResource {
case ATTACHMENT: return "Answer is binary content such as a image, PDF, etc.";
case REFERENCE: return "Answer is a reference to another resource (practitioner, organization, etc.).";
case QUANTITY: return "Answer is a combination of a numeric value and unit, potentially with a comparator (<, >, etc.).";
case NULL: return null;
default: return "?";
}
}
@ -328,6 +335,7 @@ public class Questionnaire extends DomainResource {
case ATTACHMENT: return "Attachment";
case REFERENCE: return "Reference";
case QUANTITY: return "Quantity";
case NULL: return null;
default: return "?";
}
}

View File

@ -84,6 +84,7 @@ public class QuestionnaireResponse extends DomainResource {
case INPROGRESS: return "in-progress";
case COMPLETED: return "completed";
case AMENDED: return "amended";
case NULL: return null;
default: return "?";
}
}
@ -92,6 +93,7 @@ public class QuestionnaireResponse extends DomainResource {
case INPROGRESS: return "http://hl7.org/fhir/questionnaire-answers-status";
case COMPLETED: return "http://hl7.org/fhir/questionnaire-answers-status";
case AMENDED: return "http://hl7.org/fhir/questionnaire-answers-status";
case NULL: return null;
default: return "?";
}
}
@ -100,6 +102,7 @@ public class QuestionnaireResponse extends DomainResource {
case INPROGRESS: return "This QuestionnaireResponse has been partially filled out with answers, but changes or additions are still expected to be made to it.";
case COMPLETED: return "This QuestionnaireResponse has been filled out with answers, and the current content is regarded as definitive.";
case AMENDED: return "This QuestionnaireResponse has been filled out with answers, then marked as complete, yet changes or additions have been made to it afterwards.";
case NULL: return null;
default: return "?";
}
}
@ -108,6 +111,7 @@ public class QuestionnaireResponse extends DomainResource {
case INPROGRESS: return "In Progress";
case COMPLETED: return "Completed";
case AMENDED: return "Amended";
case NULL: return null;
default: return "?";
}
}

View File

@ -110,6 +110,7 @@ public class ReferralRequest extends DomainResource {
case ACCEPTED: return "accepted";
case REJECTED: return "rejected";
case COMPLETED: return "completed";
case NULL: return null;
default: return "?";
}
}
@ -122,6 +123,7 @@ public class ReferralRequest extends DomainResource {
case ACCEPTED: return "http://hl7.org/fhir/referralstatus";
case REJECTED: return "http://hl7.org/fhir/referralstatus";
case COMPLETED: return "http://hl7.org/fhir/referralstatus";
case NULL: return null;
default: return "?";
}
}
@ -134,6 +136,7 @@ public class ReferralRequest extends DomainResource {
case ACCEPTED: return "The recipient has agreed to deliver the care requested by the referral.";
case REJECTED: return "The recipient has declined to accept the referral.";
case COMPLETED: return "The referral has been completely actioned.";
case NULL: return null;
default: return "?";
}
}
@ -146,6 +149,7 @@ public class ReferralRequest extends DomainResource {
case ACCEPTED: return "Accepted";
case REJECTED: return "Rejected";
case COMPLETED: return "Completed";
case NULL: return null;
default: return "?";
}
}

View File

@ -102,6 +102,7 @@ public class SearchParameter extends DomainResource {
case NEARBY: return "nearby";
case DISTANCE: return "distance";
case OTHER: return "other";
case NULL: return null;
default: return "?";
}
}
@ -112,6 +113,7 @@ public class SearchParameter extends DomainResource {
case NEARBY: return "http://hl7.org/fhir/search-xpath-usage";
case DISTANCE: return "http://hl7.org/fhir/search-xpath-usage";
case OTHER: return "http://hl7.org/fhir/search-xpath-usage";
case NULL: return null;
default: return "?";
}
}
@ -122,6 +124,7 @@ public class SearchParameter extends DomainResource {
case NEARBY: return "The search parameter is based on a spatial transform of the selected nodes.";
case DISTANCE: return "The search parameter is based on a spatial transform of the selected nodes, using physical distance from the middle.";
case OTHER: return "The interpretation of the xpath statement is unknown (and can't be automated).";
case NULL: return null;
default: return "?";
}
}
@ -132,6 +135,7 @@ public class SearchParameter extends DomainResource {
case NEARBY: return "Nearby";
case DISTANCE: return "Distance";
case OTHER: return "Other";
case NULL: return null;
default: return "?";
}
}

View File

@ -89,6 +89,7 @@ public class Slot extends DomainResource {
case FREE: return "free";
case BUSYUNAVAILABLE: return "busy-unavailable";
case BUSYTENTATIVE: return "busy-tentative";
case NULL: return null;
default: return "?";
}
}
@ -98,6 +99,7 @@ public class Slot extends DomainResource {
case FREE: return "http://hl7.org/fhir/slotstatus";
case BUSYUNAVAILABLE: return "http://hl7.org/fhir/slotstatus";
case BUSYTENTATIVE: return "http://hl7.org/fhir/slotstatus";
case NULL: return null;
default: return "?";
}
}
@ -107,6 +109,7 @@ public class Slot extends DomainResource {
case FREE: return "Indicates that the time interval is free for scheduling.";
case BUSYUNAVAILABLE: return "Indicates that the time interval is busy and that the interval can not be scheduled.";
case BUSYTENTATIVE: return "Indicates that the time interval is busy because one or more events have been tentatively scheduled for that interval.";
case NULL: return null;
default: return "?";
}
}
@ -116,6 +119,7 @@ public class Slot extends DomainResource {
case FREE: return "Free";
case BUSYUNAVAILABLE: return "Busy (Unavailable)";
case BUSYTENTATIVE: return "Busy (Tentative)";
case NULL: return null;
default: return "?";
}
}

View File

@ -91,6 +91,7 @@ public class Specimen extends DomainResource {
case UNAVAILABLE: return "unavailable";
case UNSATISFACTORY: return "unsatisfactory";
case ENTEREDINERROR: return "entered-in-error";
case NULL: return null;
default: return "?";
}
}
@ -100,6 +101,7 @@ public class Specimen extends DomainResource {
case UNAVAILABLE: return "http://hl7.org/fhir/specimen-status";
case UNSATISFACTORY: return "http://hl7.org/fhir/specimen-status";
case ENTEREDINERROR: return "http://hl7.org/fhir/specimen-status";
case NULL: return null;
default: return "?";
}
}
@ -109,6 +111,7 @@ public class Specimen extends DomainResource {
case UNAVAILABLE: return "There is no physical specimen because it is either lost, destroyed or consumed.";
case UNSATISFACTORY: return "The specimen cannot be used because of a quality issue such as a broken container, contamination, or too old.";
case ENTEREDINERROR: return "The specimen was entered in error and therefore nullified.";
case NULL: return null;
default: return "?";
}
}
@ -118,6 +121,7 @@ public class Specimen extends DomainResource {
case UNAVAILABLE: return "Unavailable";
case UNSATISFACTORY: return "Unsatisfactory";
case ENTEREDINERROR: return "Entered-in-error";
case NULL: return null;
default: return "?";
}
}

View File

@ -86,6 +86,7 @@ public class StructureDefinition extends DomainResource {
case DATATYPE: return "datatype";
case RESOURCE: return "resource";
case LOGICAL: return "logical";
case NULL: return null;
default: return "?";
}
}
@ -94,6 +95,7 @@ public class StructureDefinition extends DomainResource {
case DATATYPE: return "http://hl7.org/fhir/structure-definition-kind";
case RESOURCE: return "http://hl7.org/fhir/structure-definition-kind";
case LOGICAL: return "http://hl7.org/fhir/structure-definition-kind";
case NULL: return null;
default: return "?";
}
}
@ -102,6 +104,7 @@ public class StructureDefinition extends DomainResource {
case DATATYPE: return "A data type - either a primitive or complex structure that defines a set of data elements. These can be used throughout Resource and extension definitions.";
case RESOURCE: return "A resource defined by the FHIR specification.";
case LOGICAL: return "A logical model - a conceptual package of data that will be mapped to resources for implementation.";
case NULL: return null;
default: return "?";
}
}
@ -110,6 +113,7 @@ public class StructureDefinition extends DomainResource {
case DATATYPE: return "Data Type";
case RESOURCE: return "Resource";
case LOGICAL: return "Logical Model";
case NULL: return null;
default: return "?";
}
}
@ -193,6 +197,7 @@ public class StructureDefinition extends DomainResource {
case DATATYPE: return "datatype";
case MAPPING: return "mapping";
case EXTENSION: return "extension";
case NULL: return null;
default: return "?";
}
}
@ -202,6 +207,7 @@ public class StructureDefinition extends DomainResource {
case DATATYPE: return "http://hl7.org/fhir/extension-context";
case MAPPING: return "http://hl7.org/fhir/extension-context";
case EXTENSION: return "http://hl7.org/fhir/extension-context";
case NULL: return null;
default: return "?";
}
}
@ -211,6 +217,7 @@ public class StructureDefinition extends DomainResource {
case DATATYPE: return "The context is all nodes matching a particular data type element path (root or repeating element) or all elements referencing a particular primitive data type (expressed as the datatype name).";
case MAPPING: return "The context is all nodes whose mapping to a specified reference model corresponds to a particular mapping structure. The context identifies the mapping target. The mapping should clearly identify where such an extension could be used.";
case EXTENSION: return "The context is a particular extension from a particular profile, a uri that identifies the extension definition.";
case NULL: return null;
default: return "?";
}
}
@ -220,6 +227,7 @@ public class StructureDefinition extends DomainResource {
case DATATYPE: return "Datatype";
case MAPPING: return "Mapping";
case EXTENSION: return "Extension";
case NULL: return null;
default: return "?";
}
}

View File

@ -91,6 +91,7 @@ public class Subscription extends DomainResource {
case ACTIVE: return "active";
case ERROR: return "error";
case OFF: return "off";
case NULL: return null;
default: return "?";
}
}
@ -100,6 +101,7 @@ public class Subscription extends DomainResource {
case ACTIVE: return "http://hl7.org/fhir/subscription-status";
case ERROR: return "http://hl7.org/fhir/subscription-status";
case OFF: return "http://hl7.org/fhir/subscription-status";
case NULL: return null;
default: return "?";
}
}
@ -109,6 +111,7 @@ public class Subscription extends DomainResource {
case ACTIVE: return "The subscription is active.";
case ERROR: return "The server has an error executing the notification.";
case OFF: return "Too many errors have occurred or the subscription has expired.";
case NULL: return null;
default: return "?";
}
}
@ -118,6 +121,7 @@ public class Subscription extends DomainResource {
case ACTIVE: return "Active";
case ERROR: return "Error";
case OFF: return "Off";
case NULL: return null;
default: return "?";
}
}
@ -214,6 +218,7 @@ public class Subscription extends DomainResource {
case EMAIL: return "email";
case SMS: return "sms";
case MESSAGE: return "message";
case NULL: return null;
default: return "?";
}
}
@ -224,6 +229,7 @@ public class Subscription extends DomainResource {
case EMAIL: return "http://hl7.org/fhir/subscription-channel-type";
case SMS: return "http://hl7.org/fhir/subscription-channel-type";
case MESSAGE: return "http://hl7.org/fhir/subscription-channel-type";
case NULL: return null;
default: return "?";
}
}
@ -234,6 +240,7 @@ public class Subscription extends DomainResource {
case EMAIL: return "The channel is executed by sending an email to the email addressed in the URI (which must be a mailto:).";
case SMS: return "The channel is executed by sending an SMS message to the phone number identified in the URL (tel:).";
case MESSAGE: return "The channel is executed by sending a message (e.g. a Bundle with a MessageHeader resource etc.) to the application identified in the URI.";
case NULL: return null;
default: return "?";
}
}
@ -244,6 +251,7 @@ public class Subscription extends DomainResource {
case EMAIL: return "Email";
case SMS: return "SMS";
case MESSAGE: return "Message";
case NULL: return null;
default: return "?";
}
}

View File

@ -81,6 +81,7 @@ public class SupplyDelivery extends DomainResource {
case INPROGRESS: return "in-progress";
case COMPLETED: return "completed";
case ABANDONED: return "abandoned";
case NULL: return null;
default: return "?";
}
}
@ -89,6 +90,7 @@ public class SupplyDelivery extends DomainResource {
case INPROGRESS: return "http://hl7.org/fhir/supplydelivery-status";
case COMPLETED: return "http://hl7.org/fhir/supplydelivery-status";
case ABANDONED: return "http://hl7.org/fhir/supplydelivery-status";
case NULL: return null;
default: return "?";
}
}
@ -97,6 +99,7 @@ public class SupplyDelivery extends DomainResource {
case INPROGRESS: return "Supply has been requested, but not delivered.";
case COMPLETED: return "Supply has been delivered (\"completed\").";
case ABANDONED: return "Dispensing was not completed.";
case NULL: return null;
default: return "?";
}
}
@ -105,6 +108,7 @@ public class SupplyDelivery extends DomainResource {
case INPROGRESS: return "In Progress";
case COMPLETED: return "Delivered";
case ABANDONED: return "Abandoned";
case NULL: return null;
default: return "?";
}
}

View File

@ -90,6 +90,7 @@ public class SupplyRequest extends DomainResource {
case COMPLETED: return "completed";
case FAILED: return "failed";
case CANCELLED: return "cancelled";
case NULL: return null;
default: return "?";
}
}
@ -99,6 +100,7 @@ public class SupplyRequest extends DomainResource {
case COMPLETED: return "http://hl7.org/fhir/supplyrequest-status";
case FAILED: return "http://hl7.org/fhir/supplyrequest-status";
case CANCELLED: return "http://hl7.org/fhir/supplyrequest-status";
case NULL: return null;
default: return "?";
}
}
@ -108,6 +110,7 @@ public class SupplyRequest extends DomainResource {
case COMPLETED: return "Supply has been received by the requestor.";
case FAILED: return "The supply will not be completed because the supplier was unable or unwilling to supply the item.";
case CANCELLED: return "The orderer of the supply cancelled the request.";
case NULL: return null;
default: return "?";
}
}
@ -117,6 +120,7 @@ public class SupplyRequest extends DomainResource {
case COMPLETED: return "Received";
case FAILED: return "Failed";
case CANCELLED: return "Cancelled";
case NULL: return null;
default: return "?";
}
}

View File

@ -79,6 +79,7 @@ public class TestScript extends DomainResource {
switch (this) {
case XML: return "xml";
case JSON: return "json";
case NULL: return null;
default: return "?";
}
}
@ -86,6 +87,7 @@ public class TestScript extends DomainResource {
switch (this) {
case XML: return "http://hl7.org/fhir/content-type";
case JSON: return "http://hl7.org/fhir/content-type";
case NULL: return null;
default: return "?";
}
}
@ -93,6 +95,7 @@ public class TestScript extends DomainResource {
switch (this) {
case XML: return "XML content-type corresponding to the application/xml+fhir mime-type.";
case JSON: return "JSON content-type corresponding to the application/json+fhir mime-type.";
case NULL: return null;
default: return "?";
}
}
@ -100,6 +103,7 @@ public class TestScript extends DomainResource {
switch (this) {
case XML: return "xml";
case JSON: return "json";
case NULL: return null;
default: return "?";
}
}
@ -163,6 +167,7 @@ public class TestScript extends DomainResource {
switch (this) {
case RESPONSE: return "response";
case REQUEST: return "request";
case NULL: return null;
default: return "?";
}
}
@ -170,6 +175,7 @@ public class TestScript extends DomainResource {
switch (this) {
case RESPONSE: return "http://hl7.org/fhir/assert-direction-codes";
case REQUEST: return "http://hl7.org/fhir/assert-direction-codes";
case NULL: return null;
default: return "?";
}
}
@ -177,6 +183,7 @@ public class TestScript extends DomainResource {
switch (this) {
case RESPONSE: return "The assertion is evaluated on the response. This is the default value.";
case REQUEST: return "The assertion is evaluated on the request.";
case NULL: return null;
default: return "?";
}
}
@ -184,6 +191,7 @@ public class TestScript extends DomainResource {
switch (this) {
case RESPONSE: return "response";
case REQUEST: return "request";
case NULL: return null;
default: return "?";
}
}
@ -303,6 +311,7 @@ public class TestScript extends DomainResource {
case NOTEMPTY: return "notEmpty";
case CONTAINS: return "contains";
case NOTCONTAINS: return "notContains";
case NULL: return null;
default: return "?";
}
}
@ -318,6 +327,7 @@ public class TestScript extends DomainResource {
case NOTEMPTY: return "http://hl7.org/fhir/assert-operator-codes";
case CONTAINS: return "http://hl7.org/fhir/assert-operator-codes";
case NOTCONTAINS: return "http://hl7.org/fhir/assert-operator-codes";
case NULL: return null;
default: return "?";
}
}
@ -333,6 +343,7 @@ public class TestScript extends DomainResource {
case NOTEMPTY: return "Compare value is not empty.";
case CONTAINS: return "Compare value string contains a known value.";
case NOTCONTAINS: return "Compare value string does not contain a known value.";
case NULL: return null;
default: return "?";
}
}
@ -348,6 +359,7 @@ public class TestScript extends DomainResource {
case NOTEMPTY: return "notEmpty";
case CONTAINS: return "contains";
case NOTCONTAINS: return "notContains";
case NULL: return null;
default: return "?";
}
}
@ -529,6 +541,7 @@ public class TestScript extends DomainResource {
case GONE: return "gone";
case PRECONDITIONFAILED: return "preconditionFailed";
case UNPROCESSABLE: return "unprocessable";
case NULL: return null;
default: return "?";
}
}
@ -546,6 +559,7 @@ public class TestScript extends DomainResource {
case GONE: return "http://hl7.org/fhir/assert-response-code-types";
case PRECONDITIONFAILED: return "http://hl7.org/fhir/assert-response-code-types";
case UNPROCESSABLE: return "http://hl7.org/fhir/assert-response-code-types";
case NULL: return null;
default: return "?";
}
}
@ -563,6 +577,7 @@ public class TestScript extends DomainResource {
case GONE: return "Response code is 410.";
case PRECONDITIONFAILED: return "Response code is 412.";
case UNPROCESSABLE: return "Response code is 422.";
case NULL: return null;
default: return "?";
}
}
@ -580,6 +595,7 @@ public class TestScript extends DomainResource {
case GONE: return "gone";
case PRECONDITIONFAILED: return "preconditionFailed";
case UNPROCESSABLE: return "unprocessable";
case NULL: return null;
default: return "?";
}
}

View File

@ -113,6 +113,7 @@ public class Timing extends Type implements ICompositeType {
case WK: return "wk";
case MO: return "mo";
case A: return "a";
case NULL: return null;
default: return "?";
}
}
@ -125,6 +126,7 @@ public class Timing extends Type implements ICompositeType {
case WK: return "http://unitsofmeasure.org";
case MO: return "http://unitsofmeasure.org";
case A: return "http://unitsofmeasure.org";
case NULL: return null;
default: return "?";
}
}
@ -137,6 +139,7 @@ public class Timing extends Type implements ICompositeType {
case WK: return "";
case MO: return "";
case A: return "";
case NULL: return null;
default: return "?";
}
}
@ -149,6 +152,7 @@ public class Timing extends Type implements ICompositeType {
case WK: return "wk";
case MO: return "mo";
case A: return "a";
case NULL: return null;
default: return "?";
}
}
@ -326,6 +330,7 @@ public class Timing extends Type implements ICompositeType {
case PCM: return "PCM";
case PCD: return "PCD";
case PCV: return "PCV";
case NULL: return null;
default: return "?";
}
}
@ -345,6 +350,7 @@ public class Timing extends Type implements ICompositeType {
case PCM: return "http://hl7.org/fhir/v3/TimingEvent";
case PCD: return "http://hl7.org/fhir/v3/TimingEvent";
case PCV: return "http://hl7.org/fhir/v3/TimingEvent";
case NULL: return null;
default: return "?";
}
}
@ -364,6 +370,7 @@ public class Timing extends Type implements ICompositeType {
case PCM: return "";
case PCD: return "";
case PCV: return "";
case NULL: return null;
default: return "?";
}
}
@ -383,6 +390,7 @@ public class Timing extends Type implements ICompositeType {
case PCM: return "PCM";
case PCD: return "PCD";
case PCV: return "PCV";
case NULL: return null;
default: return "?";
}
}

View File

@ -107,6 +107,7 @@ public class ValueSet extends DomainResource {
case REGEX: return "regex";
case IN: return "in";
case NOTIN: return "not-in";
case NULL: return null;
default: return "?";
}
}
@ -118,6 +119,7 @@ public class ValueSet extends DomainResource {
case REGEX: return "http://hl7.org/fhir/filter-operator";
case IN: return "http://hl7.org/fhir/filter-operator";
case NOTIN: return "http://hl7.org/fhir/filter-operator";
case NULL: return null;
default: return "?";
}
}
@ -129,6 +131,7 @@ public class ValueSet extends DomainResource {
case REGEX: return "The specified property of the code matches the regex specified in the provided value.";
case IN: return "The specified property of the code is in the set of codes or concepts specified in the provided value (comma separated list).";
case NOTIN: return "The specified property of the code is not in the set of codes or concepts specified in the provided value (comma separated list).";
case NULL: return null;
default: return "?";
}
}
@ -140,6 +143,7 @@ public class ValueSet extends DomainResource {
case REGEX: return "Regular Expression";
case IN: return "In Set";
case NOTIN: return "Not in Set";
case NULL: return null;
default: return "?";
}
}

View File

@ -79,6 +79,7 @@ public class VisionPrescription extends DomainResource {
switch (this) {
case RIGHT: return "right";
case LEFT: return "left";
case NULL: return null;
default: return "?";
}
}
@ -86,6 +87,7 @@ public class VisionPrescription extends DomainResource {
switch (this) {
case RIGHT: return "http://hl7.org/fhir/vision-eye-codes";
case LEFT: return "http://hl7.org/fhir/vision-eye-codes";
case NULL: return null;
default: return "?";
}
}
@ -93,6 +95,7 @@ public class VisionPrescription extends DomainResource {
switch (this) {
case RIGHT: return "Right Eye";
case LEFT: return "Left Eye";
case NULL: return null;
default: return "?";
}
}
@ -100,6 +103,7 @@ public class VisionPrescription extends DomainResource {
switch (this) {
case RIGHT: return "Right Eye";
case LEFT: return "Left Eye";
case NULL: return null;
default: return "?";
}
}
@ -177,6 +181,7 @@ public class VisionPrescription extends DomainResource {
case DOWN: return "down";
case IN: return "in";
case OUT: return "out";
case NULL: return null;
default: return "?";
}
}
@ -186,6 +191,7 @@ public class VisionPrescription extends DomainResource {
case DOWN: return "http://hl7.org/fhir/vision-base-codes";
case IN: return "http://hl7.org/fhir/vision-base-codes";
case OUT: return "http://hl7.org/fhir/vision-base-codes";
case NULL: return null;
default: return "?";
}
}
@ -195,6 +201,7 @@ public class VisionPrescription extends DomainResource {
case DOWN: return "bottom";
case IN: return "inner edge";
case OUT: return "outer edge";
case NULL: return null;
default: return "?";
}
}
@ -204,6 +211,7 @@ public class VisionPrescription extends DomainResource {
case DOWN: return "Down";
case IN: return "In";
case OUT: return "Out";
case NULL: return null;
default: return "?";
}
}

View File

@ -2436,7 +2436,8 @@ public class NarrativeGenerator implements INarrativeGenerator {
case INEXACT : return "><";
case UNMATCHED : return "-";
case DISJOINT : return "!=";
default: return "?";
case NULL: return null;
default: return "?";
}
}

View File

@ -75,6 +75,7 @@ public class Account extends DomainResource {
switch (this) {
case ACTIVE: return "active";
case INACTIVE: return "inactive";
case NULL: return null;
default: return "?";
}
}
@ -82,6 +83,7 @@ public class Account extends DomainResource {
switch (this) {
case ACTIVE: return "http://hl7.org/fhir/account-status";
case INACTIVE: return "http://hl7.org/fhir/account-status";
case NULL: return null;
default: return "?";
}
}
@ -89,6 +91,7 @@ public class Account extends DomainResource {
switch (this) {
case ACTIVE: return "This account is active and may be used.";
case INACTIVE: return "This account is inactive and should not be used to track financial information.";
case NULL: return null;
default: return "?";
}
}
@ -96,6 +99,7 @@ public class Account extends DomainResource {
switch (this) {
case ACTIVE: return "Active";
case INACTIVE: return "Inactive";
case NULL: return null;
default: return "?";
}
}

View File

@ -77,6 +77,7 @@ public class ActionDefinition extends Type implements ICompositeType {
switch (this) {
case BEFORE: return "before";
case AFTER: return "after";
case NULL: return null;
default: return "?";
}
}
@ -84,6 +85,7 @@ public class ActionDefinition extends Type implements ICompositeType {
switch (this) {
case BEFORE: return "http://hl7.org/fhir/action-relationship-type";
case AFTER: return "http://hl7.org/fhir/action-relationship-type";
case NULL: return null;
default: return "?";
}
}
@ -91,6 +93,7 @@ public class ActionDefinition extends Type implements ICompositeType {
switch (this) {
case BEFORE: return "The action must be performed before the related action";
case AFTER: return "The action must be performed after the related action";
case NULL: return null;
default: return "?";
}
}
@ -98,6 +101,7 @@ public class ActionDefinition extends Type implements ICompositeType {
switch (this) {
case BEFORE: return "Before";
case AFTER: return "After";
case NULL: return null;
default: return "?";
}
}
@ -164,6 +168,7 @@ public class ActionDefinition extends Type implements ICompositeType {
switch (this) {
case START: return "start";
case END: return "end";
case NULL: return null;
default: return "?";
}
}
@ -171,6 +176,7 @@ public class ActionDefinition extends Type implements ICompositeType {
switch (this) {
case START: return "http://hl7.org/fhir/action-relationship-anchor";
case END: return "http://hl7.org/fhir/action-relationship-anchor";
case NULL: return null;
default: return "?";
}
}
@ -178,6 +184,7 @@ public class ActionDefinition extends Type implements ICompositeType {
switch (this) {
case START: return "The action relationship is anchored to the start of the related action";
case END: return "The action relationship is anchored to the end of the related action";
case NULL: return null;
default: return "?";
}
}
@ -185,6 +192,7 @@ public class ActionDefinition extends Type implements ICompositeType {
switch (this) {
case START: return "Start";
case END: return "End";
case NULL: return null;
default: return "?";
}
}
@ -258,6 +266,7 @@ public class ActionDefinition extends Type implements ICompositeType {
case PATIENT: return "patient";
case PRACTITIONER: return "practitioner";
case RELATEDPERSON: return "related-person";
case NULL: return null;
default: return "?";
}
}
@ -266,6 +275,7 @@ public class ActionDefinition extends Type implements ICompositeType {
case PATIENT: return "http://hl7.org/fhir/action-participant-type";
case PRACTITIONER: return "http://hl7.org/fhir/action-participant-type";
case RELATEDPERSON: return "http://hl7.org/fhir/action-participant-type";
case NULL: return null;
default: return "?";
}
}
@ -274,6 +284,7 @@ public class ActionDefinition extends Type implements ICompositeType {
case PATIENT: return "The participant is the patient under evaluation";
case PRACTITIONER: return "The participant is a practitioner involved in the patient's care";
case RELATEDPERSON: return "The participant is a person related to the patient";
case NULL: return null;
default: return "?";
}
}
@ -282,6 +293,7 @@ public class ActionDefinition extends Type implements ICompositeType {
case PATIENT: return "Patient";
case PRACTITIONER: return "Practitioner";
case RELATEDPERSON: return "Related Person";
case NULL: return null;
default: return "?";
}
}
@ -368,6 +380,7 @@ public class ActionDefinition extends Type implements ICompositeType {
case UPDATE: return "update";
case REMOVE: return "remove";
case FIREEVENT: return "fire-event";
case NULL: return null;
default: return "?";
}
}
@ -377,6 +390,7 @@ public class ActionDefinition extends Type implements ICompositeType {
case UPDATE: return "http://hl7.org/fhir/action-type";
case REMOVE: return "http://hl7.org/fhir/action-type";
case FIREEVENT: return "http://hl7.org/fhir/action-type";
case NULL: return null;
default: return "?";
}
}
@ -386,6 +400,7 @@ public class ActionDefinition extends Type implements ICompositeType {
case UPDATE: return "The action is to update an existing resource";
case REMOVE: return "The action is to remove an existing resource";
case FIREEVENT: return "The action is to fire a specific event";
case NULL: return null;
default: return "?";
}
}
@ -395,6 +410,7 @@ public class ActionDefinition extends Type implements ICompositeType {
case UPDATE: return "Update";
case REMOVE: return "Remove";
case FIREEVENT: return "Fire Event";
case NULL: return null;
default: return "?";
}
}

View File

@ -89,6 +89,7 @@ public class Address extends Type implements ICompositeType {
case WORK: return "work";
case TEMP: return "temp";
case OLD: return "old";
case NULL: return null;
default: return "?";
}
}
@ -98,6 +99,7 @@ public class Address extends Type implements ICompositeType {
case WORK: return "http://hl7.org/fhir/address-use";
case TEMP: return "http://hl7.org/fhir/address-use";
case OLD: return "http://hl7.org/fhir/address-use";
case NULL: return null;
default: return "?";
}
}
@ -107,6 +109,7 @@ public class Address extends Type implements ICompositeType {
case WORK: return "An office address. First choice for business related contacts during business hours.";
case TEMP: return "A temporary address. The period can provide more detailed information.";
case OLD: return "This address is no longer in use (or was never correct, but retained for records).";
case NULL: return null;
default: return "?";
}
}
@ -116,6 +119,7 @@ public class Address extends Type implements ICompositeType {
case WORK: return "Work";
case TEMP: return "Temporary";
case OLD: return "Old / Incorrect";
case NULL: return null;
default: return "?";
}
}
@ -201,6 +205,7 @@ public class Address extends Type implements ICompositeType {
case POSTAL: return "postal";
case PHYSICAL: return "physical";
case BOTH: return "both";
case NULL: return null;
default: return "?";
}
}
@ -209,6 +214,7 @@ public class Address extends Type implements ICompositeType {
case POSTAL: return "http://hl7.org/fhir/address-type";
case PHYSICAL: return "http://hl7.org/fhir/address-type";
case BOTH: return "http://hl7.org/fhir/address-type";
case NULL: return null;
default: return "?";
}
}
@ -217,6 +223,7 @@ public class Address extends Type implements ICompositeType {
case POSTAL: return "Mailing addresses - PO Boxes and care-of addresses.";
case PHYSICAL: return "A physical address that can be visited.";
case BOTH: return "An address that is both physical and postal.";
case NULL: return null;
default: return "?";
}
}
@ -225,6 +232,7 @@ public class Address extends Type implements ICompositeType {
case POSTAL: return "Postal";
case PHYSICAL: return "Physical";
case BOTH: return "Postal & Physical";
case NULL: return null;
default: return "?";
}
}

View File

@ -113,6 +113,7 @@ public class AllergyIntolerance extends DomainResource {
case RESOLVED: return "resolved";
case REFUTED: return "refuted";
case ENTEREDINERROR: return "entered-in-error";
case NULL: return null;
default: return "?";
}
}
@ -125,6 +126,7 @@ public class AllergyIntolerance extends DomainResource {
case RESOLVED: return "http://hl7.org/fhir/allergy-intolerance-status";
case REFUTED: return "http://hl7.org/fhir/allergy-intolerance-status";
case ENTEREDINERROR: return "http://hl7.org/fhir/allergy-intolerance-status";
case NULL: return null;
default: return "?";
}
}
@ -137,6 +139,7 @@ public class AllergyIntolerance extends DomainResource {
case RESOLVED: return "A reaction to the identified Substance has been clinically reassessed by testing or rechallenge and considered to be resolved.";
case REFUTED: return "A propensity for a reaction to the identified Substance has been disproven with a high level of clinical certainty, which may include testing or rechallenge, and is refuted.";
case ENTEREDINERROR: return "The statement was entered in error and is not valid.";
case NULL: return null;
default: return "?";
}
}
@ -149,6 +152,7 @@ public class AllergyIntolerance extends DomainResource {
case RESOLVED: return "Resolved";
case REFUTED: return "Refuted";
case ENTEREDINERROR: return "Entered In Error";
case NULL: return null;
default: return "?";
}
}
@ -245,6 +249,7 @@ public class AllergyIntolerance extends DomainResource {
switch (this) {
case ALLERGY: return "allergy";
case INTOLERANCE: return "intolerance";
case NULL: return null;
default: return "?";
}
}
@ -252,6 +257,7 @@ public class AllergyIntolerance extends DomainResource {
switch (this) {
case ALLERGY: return "http://hl7.org/fhir/allergy-intolerance-type";
case INTOLERANCE: return "http://hl7.org/fhir/allergy-intolerance-type";
case NULL: return null;
default: return "?";
}
}
@ -259,6 +265,7 @@ public class AllergyIntolerance extends DomainResource {
switch (this) {
case ALLERGY: return "A propensity for hypersensitivity reaction(s) to a substance. These reactions are most typically type I hypersensitivity, plus other \"allergy-like\" reactions, including pseudoallergy.";
case INTOLERANCE: return "A propensity for adverse reactions to a substance that is not judged to be allergic or \"allergy-like\". These reactions are typically (but not necessarily) non-immune. They are to some degree idiosyncratic and/or individually specific (i.e. are not a reaction that is expected to occur with most or all patients given similar circumstances).";
case NULL: return null;
default: return "?";
}
}
@ -266,6 +273,7 @@ public class AllergyIntolerance extends DomainResource {
switch (this) {
case ALLERGY: return "Allergy";
case INTOLERANCE: return "Intolerance";
case NULL: return null;
default: return "?";
}
}
@ -346,6 +354,7 @@ public class AllergyIntolerance extends DomainResource {
case MEDICATION: return "medication";
case ENVIRONMENT: return "environment";
case OTHER: return "other";
case NULL: return null;
default: return "?";
}
}
@ -355,6 +364,7 @@ public class AllergyIntolerance extends DomainResource {
case MEDICATION: return "http://hl7.org/fhir/allergy-intolerance-category";
case ENVIRONMENT: return "http://hl7.org/fhir/allergy-intolerance-category";
case OTHER: return "http://hl7.org/fhir/allergy-intolerance-category";
case NULL: return null;
default: return "?";
}
}
@ -364,6 +374,7 @@ public class AllergyIntolerance extends DomainResource {
case MEDICATION: return "Substances administered to achieve a physiological effect.";
case ENVIRONMENT: return "Substances that are encountered in the environment.";
case OTHER: return "Other substances that are not covered by any other category.";
case NULL: return null;
default: return "?";
}
}
@ -373,6 +384,7 @@ public class AllergyIntolerance extends DomainResource {
case MEDICATION: return "Medication";
case ENVIRONMENT: return "Environment";
case OTHER: return "Other";
case NULL: return null;
default: return "?";
}
}
@ -458,6 +470,7 @@ public class AllergyIntolerance extends DomainResource {
case LOW: return "low";
case HIGH: return "high";
case UNABLETOASSESS: return "unable-to-assess";
case NULL: return null;
default: return "?";
}
}
@ -466,6 +479,7 @@ public class AllergyIntolerance extends DomainResource {
case LOW: return "http://hl7.org/fhir/allergy-intolerance-criticality";
case HIGH: return "http://hl7.org/fhir/allergy-intolerance-criticality";
case UNABLETOASSESS: return "http://hl7.org/fhir/allergy-intolerance-criticality";
case NULL: return null;
default: return "?";
}
}
@ -474,6 +488,7 @@ public class AllergyIntolerance extends DomainResource {
case LOW: return "Worst case result of a future exposure is not assessed to be life-threatening or having high potential for organ system failure.";
case HIGH: return "Worst case result of a future exposure is assessed to be life-threatening or having high potential for organ system failure.";
case UNABLETOASSESS: return "Unable to assess the worst case result of a future exposure.";
case NULL: return null;
default: return "?";
}
}
@ -482,6 +497,7 @@ public class AllergyIntolerance extends DomainResource {
case LOW: return "Low Risk";
case HIGH: return "High Risk";
case UNABLETOASSESS: return "Unable to Assess Risk";
case NULL: return null;
default: return "?";
}
}
@ -561,6 +577,7 @@ public class AllergyIntolerance extends DomainResource {
case UNLIKELY: return "unlikely";
case LIKELY: return "likely";
case CONFIRMED: return "confirmed";
case NULL: return null;
default: return "?";
}
}
@ -569,6 +586,7 @@ public class AllergyIntolerance extends DomainResource {
case UNLIKELY: return "http://hl7.org/fhir/reaction-event-certainty";
case LIKELY: return "http://hl7.org/fhir/reaction-event-certainty";
case CONFIRMED: return "http://hl7.org/fhir/reaction-event-certainty";
case NULL: return null;
default: return "?";
}
}
@ -577,6 +595,7 @@ public class AllergyIntolerance extends DomainResource {
case UNLIKELY: return "There is a low level of clinical certainty that the reaction was caused by the identified Substance.";
case LIKELY: return "There is a high level of clinical certainty that the reaction was caused by the identified Substance.";
case CONFIRMED: return "There is a very high level of clinical certainty that the reaction was due to the identified Substance, which may include clinical evidence by testing or rechallenge.";
case NULL: return null;
default: return "?";
}
}
@ -585,6 +604,7 @@ public class AllergyIntolerance extends DomainResource {
case UNLIKELY: return "Unlikely";
case LIKELY: return "Likely";
case CONFIRMED: return "Confirmed";
case NULL: return null;
default: return "?";
}
}
@ -664,6 +684,7 @@ public class AllergyIntolerance extends DomainResource {
case MILD: return "mild";
case MODERATE: return "moderate";
case SEVERE: return "severe";
case NULL: return null;
default: return "?";
}
}
@ -672,6 +693,7 @@ public class AllergyIntolerance extends DomainResource {
case MILD: return "http://hl7.org/fhir/reaction-event-severity";
case MODERATE: return "http://hl7.org/fhir/reaction-event-severity";
case SEVERE: return "http://hl7.org/fhir/reaction-event-severity";
case NULL: return null;
default: return "?";
}
}
@ -680,6 +702,7 @@ public class AllergyIntolerance extends DomainResource {
case MILD: return "Causes mild physiological effects.";
case MODERATE: return "Causes moderate physiological effects.";
case SEVERE: return "Causes severe physiological effects.";
case NULL: return null;
default: return "?";
}
}
@ -688,6 +711,7 @@ public class AllergyIntolerance extends DomainResource {
case MILD: return "Mild";
case MODERATE: return "Moderate";
case SEVERE: return "Severe";
case NULL: return null;
default: return "?";
}
}

View File

@ -113,6 +113,7 @@ public class Appointment extends DomainResource {
case FULFILLED: return "fulfilled";
case CANCELLED: return "cancelled";
case NOSHOW: return "noshow";
case NULL: return null;
default: return "?";
}
}
@ -125,6 +126,7 @@ public class Appointment extends DomainResource {
case FULFILLED: return "http://hl7.org/fhir/appointmentstatus";
case CANCELLED: return "http://hl7.org/fhir/appointmentstatus";
case NOSHOW: return "http://hl7.org/fhir/appointmentstatus";
case NULL: return null;
default: return "?";
}
}
@ -137,6 +139,7 @@ public class Appointment extends DomainResource {
case FULFILLED: return "This appointment has completed and may have resulted in an encounter.";
case CANCELLED: return "The appointment has been cancelled.";
case NOSHOW: return "Some or all of the participant(s) have not/did not appear for the appointment (usually the patient).";
case NULL: return null;
default: return "?";
}
}
@ -149,6 +152,7 @@ public class Appointment extends DomainResource {
case FULFILLED: return "Fulfilled";
case CANCELLED: return "Cancelled";
case NOSHOW: return "No Show";
case NULL: return null;
default: return "?";
}
}
@ -252,6 +256,7 @@ public class Appointment extends DomainResource {
case REQUIRED: return "required";
case OPTIONAL: return "optional";
case INFORMATIONONLY: return "information-only";
case NULL: return null;
default: return "?";
}
}
@ -260,6 +265,7 @@ public class Appointment extends DomainResource {
case REQUIRED: return "http://hl7.org/fhir/participantrequired";
case OPTIONAL: return "http://hl7.org/fhir/participantrequired";
case INFORMATIONONLY: return "http://hl7.org/fhir/participantrequired";
case NULL: return null;
default: return "?";
}
}
@ -268,6 +274,7 @@ public class Appointment extends DomainResource {
case REQUIRED: return "The participant is required to attend the appointment.";
case OPTIONAL: return "The participant may optionally attend the appointment.";
case INFORMATIONONLY: return "The participant is excluded from the appointment, and may not be informed of the appointment taking place. (Appointment is about them, not for them - such as 2 doctors discussing results about a patient's test).";
case NULL: return null;
default: return "?";
}
}
@ -276,6 +283,7 @@ public class Appointment extends DomainResource {
case REQUIRED: return "Required";
case OPTIONAL: return "Optional";
case INFORMATIONONLY: return "Information Only";
case NULL: return null;
default: return "?";
}
}
@ -362,6 +370,7 @@ public class Appointment extends DomainResource {
case DECLINED: return "declined";
case TENTATIVE: return "tentative";
case NEEDSACTION: return "needs-action";
case NULL: return null;
default: return "?";
}
}
@ -371,6 +380,7 @@ public class Appointment extends DomainResource {
case DECLINED: return "http://hl7.org/fhir/participationstatus";
case TENTATIVE: return "http://hl7.org/fhir/participationstatus";
case NEEDSACTION: return "http://hl7.org/fhir/participationstatus";
case NULL: return null;
default: return "?";
}
}
@ -380,6 +390,7 @@ public class Appointment extends DomainResource {
case DECLINED: return "The participant has declined the appointment and will not participate in the appointment.";
case TENTATIVE: return "The participant has tentatively accepted the appointment. This could be automatically created by a system and requires further processing before it can be accepted. There is no commitment that attendance will occur.";
case NEEDSACTION: return "The participant needs to indicate if they accept the appointment by changing this status to one of the other statuses.";
case NULL: return null;
default: return "?";
}
}
@ -389,6 +400,7 @@ public class Appointment extends DomainResource {
case DECLINED: return "Declined";
case TENTATIVE: return "Tentative";
case NEEDSACTION: return "Needs Action";
case NULL: return null;
default: return "?";
}
}

View File

@ -99,6 +99,7 @@ public class AuditEvent extends DomainResource {
case U: return "U";
case D: return "D";
case E: return "E";
case NULL: return null;
default: return "?";
}
}
@ -109,6 +110,7 @@ public class AuditEvent extends DomainResource {
case U: return "http://hl7.org/fhir/audit-event-action";
case D: return "http://hl7.org/fhir/audit-event-action";
case E: return "http://hl7.org/fhir/audit-event-action";
case NULL: return null;
default: return "?";
}
}
@ -119,6 +121,7 @@ public class AuditEvent extends DomainResource {
case U: return "Update data, such as revise patient information.";
case D: return "Delete items, such as a doctor master file record.";
case E: return "Perform a system or application function such as log-on, program execution or use of an object's method, or perform a query/search operation.";
case NULL: return null;
default: return "?";
}
}
@ -129,6 +132,7 @@ public class AuditEvent extends DomainResource {
case U: return "Update";
case D: return "Delete";
case E: return "Execute";
case NULL: return null;
default: return "?";
}
}
@ -227,6 +231,7 @@ public class AuditEvent extends DomainResource {
case _4: return "4";
case _8: return "8";
case _12: return "12";
case NULL: return null;
default: return "?";
}
}
@ -236,6 +241,7 @@ public class AuditEvent extends DomainResource {
case _4: return "http://hl7.org/fhir/audit-event-outcome";
case _8: return "http://hl7.org/fhir/audit-event-outcome";
case _12: return "http://hl7.org/fhir/audit-event-outcome";
case NULL: return null;
default: return "?";
}
}
@ -245,6 +251,7 @@ public class AuditEvent extends DomainResource {
case _4: return "The action was not successful due to some kind of catered for error (often equivalent to an HTTP 400 response).";
case _8: return "The action was not successful due to some kind of unexpected error (often equivalent to an HTTP 500 response).";
case _12: return "An error of such magnitude occurred that the system is no longer available for use (i.e. the system died).";
case NULL: return null;
default: return "?";
}
}
@ -254,6 +261,7 @@ public class AuditEvent extends DomainResource {
case _4: return "Minor failure";
case _8: return "Serious failure";
case _12: return "Major failure";
case NULL: return null;
default: return "?";
}
}
@ -353,6 +361,7 @@ public class AuditEvent extends DomainResource {
case _3: return "3";
case _4: return "4";
case _5: return "5";
case NULL: return null;
default: return "?";
}
}
@ -363,6 +372,7 @@ public class AuditEvent extends DomainResource {
case _3: return "http://hl7.org/fhir/network-type";
case _4: return "http://hl7.org/fhir/network-type";
case _5: return "http://hl7.org/fhir/network-type";
case NULL: return null;
default: return "?";
}
}
@ -373,6 +383,7 @@ public class AuditEvent extends DomainResource {
case _3: return "The assigned telephone number.";
case _4: return "The assigned email address.";
case _5: return "URI (User directory, HTTP-PUT, ftp, etc.).";
case NULL: return null;
default: return "?";
}
}
@ -383,6 +394,7 @@ public class AuditEvent extends DomainResource {
case _3: return "Telephone Number";
case _4: return "Email address";
case _5: return "URI";
case NULL: return null;
default: return "?";
}
}

View File

@ -130,6 +130,7 @@ public class Bundle extends Resource implements IBaseBundle {
case HISTORY: return "history";
case SEARCHSET: return "searchset";
case COLLECTION: return "collection";
case NULL: return null;
default: return "?";
}
}
@ -144,6 +145,7 @@ public class Bundle extends Resource implements IBaseBundle {
case HISTORY: return "http://hl7.org/fhir/bundle-type";
case SEARCHSET: return "http://hl7.org/fhir/bundle-type";
case COLLECTION: return "http://hl7.org/fhir/bundle-type";
case NULL: return null;
default: return "?";
}
}
@ -158,6 +160,7 @@ public class Bundle extends Resource implements IBaseBundle {
case HISTORY: return "The bundle is a list of resources from a history interaction on a server.";
case SEARCHSET: return "The bundle is a list of resources returned as a result of a search/query interaction, operation, or message.";
case COLLECTION: return "The bundle is a set of resources collected into a single document for ease of distribution.";
case NULL: return null;
default: return "?";
}
}
@ -172,6 +175,7 @@ public class Bundle extends Resource implements IBaseBundle {
case HISTORY: return "History List";
case SEARCHSET: return "Search Results";
case COLLECTION: return "Collection";
case NULL: return null;
default: return "?";
}
}
@ -287,6 +291,7 @@ public class Bundle extends Resource implements IBaseBundle {
case MATCH: return "match";
case INCLUDE: return "include";
case OUTCOME: return "outcome";
case NULL: return null;
default: return "?";
}
}
@ -295,6 +300,7 @@ public class Bundle extends Resource implements IBaseBundle {
case MATCH: return "http://hl7.org/fhir/search-entry-mode";
case INCLUDE: return "http://hl7.org/fhir/search-entry-mode";
case OUTCOME: return "http://hl7.org/fhir/search-entry-mode";
case NULL: return null;
default: return "?";
}
}
@ -303,6 +309,7 @@ public class Bundle extends Resource implements IBaseBundle {
case MATCH: return "This resource matched the search specification.";
case INCLUDE: return "This resource is returned because it is referred to from another resource in the search set.";
case OUTCOME: return "An OperationOutcome that provides additional information about the processing of a search.";
case NULL: return null;
default: return "?";
}
}
@ -311,6 +318,7 @@ public class Bundle extends Resource implements IBaseBundle {
case MATCH: return "Match";
case INCLUDE: return "Include";
case OUTCOME: return "Outcome";
case NULL: return null;
default: return "?";
}
}
@ -397,6 +405,7 @@ public class Bundle extends Resource implements IBaseBundle {
case POST: return "POST";
case PUT: return "PUT";
case DELETE: return "DELETE";
case NULL: return null;
default: return "?";
}
}
@ -406,6 +415,7 @@ public class Bundle extends Resource implements IBaseBundle {
case POST: return "http://hl7.org/fhir/http-verb";
case PUT: return "http://hl7.org/fhir/http-verb";
case DELETE: return "http://hl7.org/fhir/http-verb";
case NULL: return null;
default: return "?";
}
}
@ -415,6 +425,7 @@ public class Bundle extends Resource implements IBaseBundle {
case POST: return "HTTP POST";
case PUT: return "HTTP PUT";
case DELETE: return "HTTP DELETE";
case NULL: return null;
default: return "?";
}
}
@ -424,6 +435,7 @@ public class Bundle extends Resource implements IBaseBundle {
case POST: return "POST";
case PUT: return "PUT";
case DELETE: return "DELETE";
case NULL: return null;
default: return "?";
}
}

View File

@ -99,6 +99,7 @@ public class CarePlan extends DomainResource {
case ACTIVE: return "active";
case COMPLETED: return "completed";
case CANCELLED: return "cancelled";
case NULL: return null;
default: return "?";
}
}
@ -109,6 +110,7 @@ public class CarePlan extends DomainResource {
case ACTIVE: return "http://hl7.org/fhir/care-plan-status";
case COMPLETED: return "http://hl7.org/fhir/care-plan-status";
case CANCELLED: return "http://hl7.org/fhir/care-plan-status";
case NULL: return null;
default: return "?";
}
}
@ -119,6 +121,7 @@ public class CarePlan extends DomainResource {
case ACTIVE: return "The plan is intended to be followed and used as part of patient care.";
case COMPLETED: return "The plan is no longer in use and is not expected to be followed or used in patient care.";
case CANCELLED: return "The plan has been terminated prior to reaching completion (though it may have been replaced by a new plan).";
case NULL: return null;
default: return "?";
}
}
@ -129,6 +132,7 @@ public class CarePlan extends DomainResource {
case ACTIVE: return "Active";
case COMPLETED: return "Completed";
case CANCELLED: return "Cancelled";
case NULL: return null;
default: return "?";
}
}
@ -220,6 +224,7 @@ public class CarePlan extends DomainResource {
case INCLUDES: return "includes";
case REPLACES: return "replaces";
case FULFILLS: return "fulfills";
case NULL: return null;
default: return "?";
}
}
@ -228,6 +233,7 @@ public class CarePlan extends DomainResource {
case INCLUDES: return "http://hl7.org/fhir/care-plan-relationship";
case REPLACES: return "http://hl7.org/fhir/care-plan-relationship";
case FULFILLS: return "http://hl7.org/fhir/care-plan-relationship";
case NULL: return null;
default: return "?";
}
}
@ -236,6 +242,7 @@ public class CarePlan extends DomainResource {
case INCLUDES: return "The referenced plan is considered to be part of this plan.";
case REPLACES: return "This plan takes the places of the referenced plan.";
case FULFILLS: return "This plan provides details about how to perform activities defined at a higher level by the referenced plan.";
case NULL: return null;
default: return "?";
}
}
@ -244,6 +251,7 @@ public class CarePlan extends DomainResource {
case INCLUDES: return "Includes";
case REPLACES: return "Replaces";
case FULFILLS: return "Fulfills";
case NULL: return null;
default: return "?";
}
}
@ -344,6 +352,7 @@ public class CarePlan extends DomainResource {
case ONHOLD: return "on-hold";
case COMPLETED: return "completed";
case CANCELLED: return "cancelled";
case NULL: return null;
default: return "?";
}
}
@ -355,6 +364,7 @@ public class CarePlan extends DomainResource {
case ONHOLD: return "http://hl7.org/fhir/care-plan-activity-status";
case COMPLETED: return "http://hl7.org/fhir/care-plan-activity-status";
case CANCELLED: return "http://hl7.org/fhir/care-plan-activity-status";
case NULL: return null;
default: return "?";
}
}
@ -366,6 +376,7 @@ public class CarePlan extends DomainResource {
case ONHOLD: return "Activity was started but has temporarily ceased with an expectation of resumption at a future time.";
case COMPLETED: return "The activities have been completed (more or less) as planned.";
case CANCELLED: return "The activities have been ended prior to completion (perhaps even before they were started).";
case NULL: return null;
default: return "?";
}
}
@ -377,6 +388,7 @@ public class CarePlan extends DomainResource {
case ONHOLD: return "On Hold";
case COMPLETED: return "Completed";
case CANCELLED: return "Cancelled";
case NULL: return null;
default: return "?";
}
}

View File

@ -101,6 +101,7 @@ public class Claim extends DomainResource {
case PHARMACY: return "pharmacy";
case PROFESSIONAL: return "professional";
case VISION: return "vision";
case NULL: return null;
default: return "?";
}
}
@ -111,6 +112,7 @@ public class Claim extends DomainResource {
case PHARMACY: return "http://hl7.org/fhir/claim-type-link";
case PROFESSIONAL: return "http://hl7.org/fhir/claim-type-link";
case VISION: return "http://hl7.org/fhir/claim-type-link";
case NULL: return null;
default: return "?";
}
}
@ -121,6 +123,7 @@ public class Claim extends DomainResource {
case PHARMACY: return "A claim for Pharmacy based goods and services.";
case PROFESSIONAL: return "A claim for Professional, typically out-patient, goods and services.";
case VISION: return "A claim for Vision (Opthamologist, Optometrist and Optician) goods and services.";
case NULL: return null;
default: return "?";
}
}
@ -131,6 +134,7 @@ public class Claim extends DomainResource {
case PHARMACY: return "Pharmacy";
case PROFESSIONAL: return "Professional";
case VISION: return "Vision";
case NULL: return null;
default: return "?";
}
}
@ -229,6 +233,7 @@ public class Claim extends DomainResource {
case PROPOSED: return "proposed";
case EXPLORATORY: return "exploratory";
case OTHER: return "other";
case NULL: return null;
default: return "?";
}
}
@ -238,6 +243,7 @@ public class Claim extends DomainResource {
case PROPOSED: return "http://hl7.org/fhir/claim-use-link";
case EXPLORATORY: return "http://hl7.org/fhir/claim-use-link";
case OTHER: return "http://hl7.org/fhir/claim-use-link";
case NULL: return null;
default: return "?";
}
}
@ -247,6 +253,7 @@ public class Claim extends DomainResource {
case PROPOSED: return "The treatment is proposed and this represents a Pre-authorization for the services.";
case EXPLORATORY: return "The treatment is proposed and this represents a Pre-determination for the services.";
case OTHER: return "A locally defined or otherwise resolved status.";
case NULL: return null;
default: return "?";
}
}
@ -256,6 +263,7 @@ public class Claim extends DomainResource {
case PROPOSED: return "Proposed";
case EXPLORATORY: return "Exploratory";
case OTHER: return "Other";
case NULL: return null;
default: return "?";
}
}

View File

@ -85,6 +85,7 @@ public class ClinicalImpression extends DomainResource {
case INPROGRESS: return "in-progress";
case COMPLETED: return "completed";
case ENTEREDINERROR: return "entered-in-error";
case NULL: return null;
default: return "?";
}
}
@ -93,6 +94,7 @@ public class ClinicalImpression extends DomainResource {
case INPROGRESS: return "http://hl7.org/fhir/clinical-impression-status";
case COMPLETED: return "http://hl7.org/fhir/clinical-impression-status";
case ENTEREDINERROR: return "http://hl7.org/fhir/clinical-impression-status";
case NULL: return null;
default: return "?";
}
}
@ -101,6 +103,7 @@ public class ClinicalImpression extends DomainResource {
case INPROGRESS: return "The assessment is still on-going and results are not yet final.";
case COMPLETED: return "The assessment is done and the results are final.";
case ENTEREDINERROR: return "This assessment was never actually done and the record is erroneous (e.g. Wrong patient).";
case NULL: return null;
default: return "?";
}
}
@ -109,6 +112,7 @@ public class ClinicalImpression extends DomainResource {
case INPROGRESS: return "In progress";
case COMPLETED: return "Completed";
case ENTEREDINERROR: return "Entered in Error";
case NULL: return null;
default: return "?";
}
}

View File

@ -94,6 +94,7 @@ public class CodeSystem extends DomainResource {
case EXAMPLAR: return "examplar";
case FRAGMENT: return "fragment";
case COMPLETE: return "complete";
case NULL: return null;
default: return "?";
}
}
@ -103,6 +104,7 @@ public class CodeSystem extends DomainResource {
case EXAMPLAR: return "http://hl7.org/fhir/codesystem-content-mode";
case FRAGMENT: return "http://hl7.org/fhir/codesystem-content-mode";
case COMPLETE: return "http://hl7.org/fhir/codesystem-content-mode";
case NULL: return null;
default: return "?";
}
}
@ -112,6 +114,7 @@ public class CodeSystem extends DomainResource {
case EXAMPLAR: return "A few representative concepts are included in the code system resource";
case FRAGMENT: return "A subset of the code system concepts are included in the code system resource";
case COMPLETE: return "All the concepts defined by the code system are included in the code system resource";
case NULL: return null;
default: return "?";
}
}
@ -121,6 +124,7 @@ public class CodeSystem extends DomainResource {
case EXAMPLAR: return "Examplar";
case FRAGMENT: return "Fragment";
case COMPLETE: return "Complete";
case NULL: return null;
default: return "?";
}
}
@ -227,6 +231,7 @@ public class CodeSystem extends DomainResource {
case INTEGER: return "integer";
case BOOLEAN: return "boolean";
case DATETIME: return "dateTime";
case NULL: return null;
default: return "?";
}
}
@ -238,6 +243,7 @@ public class CodeSystem extends DomainResource {
case INTEGER: return "http://hl7.org/fhir/concept-property-type";
case BOOLEAN: return "http://hl7.org/fhir/concept-property-type";
case DATETIME: return "http://hl7.org/fhir/concept-property-type";
case NULL: return null;
default: return "?";
}
}
@ -249,6 +255,7 @@ public class CodeSystem extends DomainResource {
case INTEGER: return "The property value is a string (often used to assign ranking values to concepts for supporting score assessments)";
case BOOLEAN: return "The property value is a boolean true | false";
case DATETIME: return "The property is a date or a date + time";
case NULL: return null;
default: return "?";
}
}
@ -260,6 +267,7 @@ public class CodeSystem extends DomainResource {
case INTEGER: return "integer";
case BOOLEAN: return "boolean";
case DATETIME: return "dateTime";
case NULL: return null;
default: return "?";
}
}

View File

@ -98,6 +98,7 @@ public class Communication extends DomainResource {
case SUSPENDED: return "suspended";
case REJECTED: return "rejected";
case FAILED: return "failed";
case NULL: return null;
default: return "?";
}
}
@ -108,6 +109,7 @@ public class Communication extends DomainResource {
case SUSPENDED: return "http://hl7.org/fhir/communication-status";
case REJECTED: return "http://hl7.org/fhir/communication-status";
case FAILED: return "http://hl7.org/fhir/communication-status";
case NULL: return null;
default: return "?";
}
}
@ -118,6 +120,7 @@ public class Communication extends DomainResource {
case SUSPENDED: return "The communication transmission has been held by originating system/user request.";
case REJECTED: return "The receiving system has declined to accept the message.";
case FAILED: return "There was a failure in transmitting the message out.";
case NULL: return null;
default: return "?";
}
}
@ -128,6 +131,7 @@ public class Communication extends DomainResource {
case SUSPENDED: return "Suspended";
case REJECTED: return "Rejected";
case FAILED: return "Failed";
case NULL: return null;
default: return "?";
}
}

View File

@ -133,6 +133,7 @@ public class CommunicationRequest extends DomainResource {
case SUSPENDED: return "suspended";
case REJECTED: return "rejected";
case FAILED: return "failed";
case NULL: return null;
default: return "?";
}
}
@ -148,6 +149,7 @@ public class CommunicationRequest extends DomainResource {
case SUSPENDED: return "http://hl7.org/fhir/communication-request-status";
case REJECTED: return "http://hl7.org/fhir/communication-request-status";
case FAILED: return "http://hl7.org/fhir/communication-request-status";
case NULL: return null;
default: return "?";
}
}
@ -163,6 +165,7 @@ public class CommunicationRequest extends DomainResource {
case SUSPENDED: return "The request has been held by originating system/user request.";
case REJECTED: return "The receiving system has declined to fulfill the request";
case FAILED: return "The communication was attempted, but due to some procedural error, it could not be completed.";
case NULL: return null;
default: return "?";
}
}
@ -178,6 +181,7 @@ public class CommunicationRequest extends DomainResource {
case SUSPENDED: return "Suspended";
case REJECTED: return "Rejected";
case FAILED: return "Failed";
case NULL: return null;
default: return "?";
}
}

View File

@ -101,6 +101,7 @@ public class CompartmentDefinition extends DomainResource {
case RELATEDPERSON: return "RelatedPerson";
case PRACTITIONER: return "Practitioner";
case DEVICE: return "Device";
case NULL: return null;
default: return "?";
}
}
@ -111,6 +112,7 @@ public class CompartmentDefinition extends DomainResource {
case RELATEDPERSON: return "http://hl7.org/fhir/compartment-type";
case PRACTITIONER: return "http://hl7.org/fhir/compartment-type";
case DEVICE: return "http://hl7.org/fhir/compartment-type";
case NULL: return null;
default: return "?";
}
}
@ -121,6 +123,7 @@ public class CompartmentDefinition extends DomainResource {
case RELATEDPERSON: return "The compartment definition is for the related-person compartment";
case PRACTITIONER: return "The compartment definition is for the practitioner compartment";
case DEVICE: return "The compartment definition is for the device compartment";
case NULL: return null;
default: return "?";
}
}
@ -131,6 +134,7 @@ public class CompartmentDefinition extends DomainResource {
case RELATEDPERSON: return "RelatedPerson";
case PRACTITIONER: return "Practitioner";
case DEVICE: return "Device";
case NULL: return null;
default: return "?";
}
}

View File

@ -92,6 +92,7 @@ public class Composition extends DomainResource {
case FINAL: return "final";
case AMENDED: return "amended";
case ENTEREDINERROR: return "entered-in-error";
case NULL: return null;
default: return "?";
}
}
@ -101,6 +102,7 @@ public class Composition extends DomainResource {
case FINAL: return "http://hl7.org/fhir/composition-status";
case AMENDED: return "http://hl7.org/fhir/composition-status";
case ENTEREDINERROR: return "http://hl7.org/fhir/composition-status";
case NULL: return null;
default: return "?";
}
}
@ -110,6 +112,7 @@ public class Composition extends DomainResource {
case FINAL: return "This version of the composition is complete and verified by an appropriate person and no further work is planned. Any subsequent updates would be on a new version of the composition.";
case AMENDED: return "The composition content or the referenced resources have been modified (edited or added to) subsequent to being released as \"final\" and the composition is complete and verified by an authorized person.";
case ENTEREDINERROR: return "The composition or document was originally created/issued in error, and this is an amendment that marks that the entire series should not be considered as valid.";
case NULL: return null;
default: return "?";
}
}
@ -119,6 +122,7 @@ public class Composition extends DomainResource {
case FINAL: return "Final";
case AMENDED: return "Amended";
case ENTEREDINERROR: return "Entered in Error";
case NULL: return null;
default: return "?";
}
}
@ -211,6 +215,7 @@ public class Composition extends DomainResource {
case PROFESSIONAL: return "professional";
case LEGAL: return "legal";
case OFFICIAL: return "official";
case NULL: return null;
default: return "?";
}
}
@ -220,6 +225,7 @@ public class Composition extends DomainResource {
case PROFESSIONAL: return "http://hl7.org/fhir/composition-attestation-mode";
case LEGAL: return "http://hl7.org/fhir/composition-attestation-mode";
case OFFICIAL: return "http://hl7.org/fhir/composition-attestation-mode";
case NULL: return null;
default: return "?";
}
}
@ -229,6 +235,7 @@ public class Composition extends DomainResource {
case PROFESSIONAL: return "The person authenticated the content in their professional capacity.";
case LEGAL: return "The person authenticated the content and accepted legal responsibility for its content.";
case OFFICIAL: return "The organization authenticated the content as consistent with their policies and procedures.";
case NULL: return null;
default: return "?";
}
}
@ -238,6 +245,7 @@ public class Composition extends DomainResource {
case PROFESSIONAL: return "Professional";
case LEGAL: return "Legal";
case OFFICIAL: return "Official";
case NULL: return null;
default: return "?";
}
}

View File

@ -106,6 +106,7 @@ public class Condition extends DomainResource {
case REFUTED: return "refuted";
case ENTEREDINERROR: return "entered-in-error";
case UNKNOWN: return "unknown";
case NULL: return null;
default: return "?";
}
}
@ -117,6 +118,7 @@ public class Condition extends DomainResource {
case REFUTED: return "http://hl7.org/fhir/condition-ver-status";
case ENTEREDINERROR: return "http://hl7.org/fhir/condition-ver-status";
case UNKNOWN: return "http://hl7.org/fhir/condition-ver-status";
case NULL: return null;
default: return "?";
}
}
@ -128,6 +130,7 @@ public class Condition extends DomainResource {
case REFUTED: return "This condition has been ruled out by diagnostic and clinical evidence.";
case ENTEREDINERROR: return "The statement was entered in error and is not valid.";
case UNKNOWN: return "The condition status is unknown. Note that \"unknown\" is a value of last resort and every attempt should be made to provide a meaningful value other than \"unknown\".";
case NULL: return null;
default: return "?";
}
}
@ -139,6 +142,7 @@ public class Condition extends DomainResource {
case REFUTED: return "Refuted";
case ENTEREDINERROR: return "Entered In Error";
case UNKNOWN: return "Unknown";
case NULL: return null;
default: return "?";
}
}

View File

@ -90,6 +90,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case INSTANCE: return "instance";
case CAPABILITY: return "capability";
case REQUIREMENTS: return "requirements";
case NULL: return null;
default: return "?";
}
}
@ -98,6 +99,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case INSTANCE: return "http://hl7.org/fhir/conformance-statement-kind";
case CAPABILITY: return "http://hl7.org/fhir/conformance-statement-kind";
case REQUIREMENTS: return "http://hl7.org/fhir/conformance-statement-kind";
case NULL: return null;
default: return "?";
}
}
@ -106,6 +108,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case INSTANCE: return "The Conformance instance represents the present capabilities of a specific system instance. This is the kind returned by OPTIONS for a FHIR server end-point.";
case CAPABILITY: return "The Conformance instance represents the capabilities of a system or piece of software, independent of a particular installation.";
case REQUIREMENTS: return "The Conformance instance represents a set of requirements for other systems to meet; e.g. as part of an implementation guide or 'request for proposal'.";
case NULL: return null;
default: return "?";
}
}
@ -114,6 +117,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case INSTANCE: return "Instance";
case CAPABILITY: return "Capability";
case REQUIREMENTS: return "Requirements";
case NULL: return null;
default: return "?";
}
}
@ -200,6 +204,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case EXTENSIONS: return "extensions";
case ELEMENTS: return "elements";
case BOTH: return "both";
case NULL: return null;
default: return "?";
}
}
@ -209,6 +214,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case EXTENSIONS: return "http://hl7.org/fhir/unknown-content-code";
case ELEMENTS: return "http://hl7.org/fhir/unknown-content-code";
case BOTH: return "http://hl7.org/fhir/unknown-content-code";
case NULL: return null;
default: return "?";
}
}
@ -218,6 +224,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case EXTENSIONS: return "The application accepts unknown extensions, but not unknown elements.";
case ELEMENTS: return "The application accepts unknown elements, but not unknown extensions.";
case BOTH: return "The application accepts unknown elements and extensions.";
case NULL: return null;
default: return "?";
}
}
@ -227,6 +234,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case EXTENSIONS: return "Unknown Extensions";
case ELEMENTS: return "Unknown Elements";
case BOTH: return "Unknown Elements and Extensions";
case NULL: return null;
default: return "?";
}
}
@ -305,6 +313,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
switch (this) {
case CLIENT: return "client";
case SERVER: return "server";
case NULL: return null;
default: return "?";
}
}
@ -312,6 +321,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
switch (this) {
case CLIENT: return "http://hl7.org/fhir/restful-conformance-mode";
case SERVER: return "http://hl7.org/fhir/restful-conformance-mode";
case NULL: return null;
default: return "?";
}
}
@ -319,6 +329,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
switch (this) {
case CLIENT: return "The application acts as a client for this resource.";
case SERVER: return "The application acts as a server for this resource.";
case NULL: return null;
default: return "?";
}
}
@ -326,6 +337,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
switch (this) {
case CLIENT: return "Client";
case SERVER: return "Server";
case NULL: return null;
default: return "?";
}
}
@ -434,6 +446,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case HISTORYTYPE: return "history-type";
case CREATE: return "create";
case SEARCHTYPE: return "search-type";
case NULL: return null;
default: return "?";
}
}
@ -447,6 +460,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case HISTORYTYPE: return "http://hl7.org/fhir/restful-interaction";
case CREATE: return "http://hl7.org/fhir/restful-interaction";
case SEARCHTYPE: return "http://hl7.org/fhir/restful-interaction";
case NULL: return null;
default: return "?";
}
}
@ -460,6 +474,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case HISTORYTYPE: return "";
case CREATE: return "";
case SEARCHTYPE: return "";
case NULL: return null;
default: return "?";
}
}
@ -473,6 +488,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case HISTORYTYPE: return "history-type";
case CREATE: return "create";
case SEARCHTYPE: return "search-type";
case NULL: return null;
default: return "?";
}
}
@ -582,6 +598,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case NOVERSION: return "no-version";
case VERSIONED: return "versioned";
case VERSIONEDUPDATE: return "versioned-update";
case NULL: return null;
default: return "?";
}
}
@ -590,6 +607,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case NOVERSION: return "http://hl7.org/fhir/versioning-policy";
case VERSIONED: return "http://hl7.org/fhir/versioning-policy";
case VERSIONEDUPDATE: return "http://hl7.org/fhir/versioning-policy";
case NULL: return null;
default: return "?";
}
}
@ -598,6 +616,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case NOVERSION: return "VersionId meta-property is not supported (server) or used (client).";
case VERSIONED: return "VersionId meta-property is supported (server) or used (client).";
case VERSIONEDUPDATE: return "VersionId is must be correct for updates (server) or will be specified (If-match header) for updates (client).";
case NULL: return null;
default: return "?";
}
}
@ -606,6 +625,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case NOVERSION: return "No VersionId Support";
case VERSIONED: return "Versioned";
case VERSIONEDUPDATE: return "VersionId tracked fully";
case NULL: return null;
default: return "?";
}
}
@ -685,6 +705,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case NOTSUPPORTED: return "not-supported";
case SINGLE: return "single";
case MULTIPLE: return "multiple";
case NULL: return null;
default: return "?";
}
}
@ -693,6 +714,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case NOTSUPPORTED: return "http://hl7.org/fhir/conditional-delete-status";
case SINGLE: return "http://hl7.org/fhir/conditional-delete-status";
case MULTIPLE: return "http://hl7.org/fhir/conditional-delete-status";
case NULL: return null;
default: return "?";
}
}
@ -701,6 +723,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case NOTSUPPORTED: return "No support for conditional deletes.";
case SINGLE: return "Conditional deletes are supported, but only single resources at a time.";
case MULTIPLE: return "Conditional deletes are supported, and multiple resources can be deleted in a single interaction.";
case NULL: return null;
default: return "?";
}
}
@ -709,6 +732,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case NOTSUPPORTED: return "Not Supported";
case SINGLE: return "Single Deletes Supported";
case MULTIPLE: return "Multiple Deletes Supported";
case NULL: return null;
default: return "?";
}
}
@ -837,6 +861,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case BELOW: return "below";
case ABOVE: return "above";
case TYPE: return "type";
case NULL: return null;
default: return "?";
}
}
@ -852,6 +877,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case BELOW: return "http://hl7.org/fhir/search-modifier-code";
case ABOVE: return "http://hl7.org/fhir/search-modifier-code";
case TYPE: return "http://hl7.org/fhir/search-modifier-code";
case NULL: return null;
default: return "?";
}
}
@ -867,6 +893,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case BELOW: return "The search parameter tests whether the value in a resource is subsumed by the specified value (is-a, or hierarchical relationships).";
case ABOVE: return "The search parameter tests whether the value in a resource subsumes the specified value (is-a, or hierarchical relationships).";
case TYPE: return "The search parameter only applies to the Resource Type specified as a modifier (e.g. the modifier is not actually :type, but :Patient etc.).";
case NULL: return null;
default: return "?";
}
}
@ -882,6 +909,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case BELOW: return "Below";
case ABOVE: return "Above";
case TYPE: return "Type";
case NULL: return null;
default: return "?";
}
}
@ -1003,6 +1031,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case TRANSACTION: return "transaction";
case SEARCHSYSTEM: return "search-system";
case HISTORYSYSTEM: return "history-system";
case NULL: return null;
default: return "?";
}
}
@ -1011,6 +1040,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case TRANSACTION: return "http://hl7.org/fhir/restful-interaction";
case SEARCHSYSTEM: return "http://hl7.org/fhir/restful-interaction";
case HISTORYSYSTEM: return "http://hl7.org/fhir/restful-interaction";
case NULL: return null;
default: return "?";
}
}
@ -1019,6 +1049,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case TRANSACTION: return "";
case SEARCHSYSTEM: return "";
case HISTORYSYSTEM: return "";
case NULL: return null;
default: return "?";
}
}
@ -1027,6 +1058,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case TRANSACTION: return "transaction";
case SEARCHSYSTEM: return "search-system";
case HISTORYSYSTEM: return "history-system";
case NULL: return null;
default: return "?";
}
}
@ -1113,6 +1145,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case BATCH: return "batch";
case TRANSACTION: return "transaction";
case BOTH: return "both";
case NULL: return null;
default: return "?";
}
}
@ -1122,6 +1155,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case BATCH: return "http://hl7.org/fhir/transaction-mode";
case TRANSACTION: return "http://hl7.org/fhir/transaction-mode";
case BOTH: return "http://hl7.org/fhir/transaction-mode";
case NULL: return null;
default: return "?";
}
}
@ -1131,6 +1165,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case BATCH: return "Batches are supported.";
case TRANSACTION: return "Transactions are supported.";
case BOTH: return "Both batches and transactions are supported.";
case NULL: return null;
default: return "?";
}
}
@ -1140,6 +1175,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case BATCH: return "Batches supported";
case TRANSACTION: return "Transactions Supported";
case BOTH: return "Batches & Transactions";
case NULL: return null;
default: return "?";
}
}
@ -1225,6 +1261,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case CONSEQUENCE: return "Consequence";
case CURRENCY: return "Currency";
case NOTIFICATION: return "Notification";
case NULL: return null;
default: return "?";
}
}
@ -1233,6 +1270,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case CONSEQUENCE: return "http://hl7.org/fhir/message-significance-category";
case CURRENCY: return "http://hl7.org/fhir/message-significance-category";
case NOTIFICATION: return "http://hl7.org/fhir/message-significance-category";
case NULL: return null;
default: return "?";
}
}
@ -1241,6 +1279,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case CONSEQUENCE: return "The message represents/requests a change that should not be processed more than once; e.g. Making a booking for an appointment.";
case CURRENCY: return "The message represents a response to query for current information. Retrospective processing is wrong and/or wasteful.";
case NOTIFICATION: return "The content is not necessarily intended to be current, and it can be reprocessed, though there may be version issues created by processing old notifications.";
case NULL: return null;
default: return "?";
}
}
@ -1249,6 +1288,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
case CONSEQUENCE: return "Consequence";
case CURRENCY: return "Currency";
case NOTIFICATION: return "Notification";
case NULL: return null;
default: return "?";
}
}
@ -1321,6 +1361,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
switch (this) {
case SENDER: return "sender";
case RECEIVER: return "receiver";
case NULL: return null;
default: return "?";
}
}
@ -1328,6 +1369,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
switch (this) {
case SENDER: return "http://hl7.org/fhir/message-conformance-event-mode";
case RECEIVER: return "http://hl7.org/fhir/message-conformance-event-mode";
case NULL: return null;
default: return "?";
}
}
@ -1335,6 +1377,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
switch (this) {
case SENDER: return "The application sends requests and receives responses.";
case RECEIVER: return "The application receives requests and sends responses.";
case NULL: return null;
default: return "?";
}
}
@ -1342,6 +1385,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
switch (this) {
case SENDER: return "Sender";
case RECEIVER: return "Receiver";
case NULL: return null;
default: return "?";
}
}
@ -1408,6 +1452,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
switch (this) {
case PRODUCER: return "producer";
case CONSUMER: return "consumer";
case NULL: return null;
default: return "?";
}
}
@ -1415,6 +1460,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
switch (this) {
case PRODUCER: return "http://hl7.org/fhir/document-mode";
case CONSUMER: return "http://hl7.org/fhir/document-mode";
case NULL: return null;
default: return "?";
}
}
@ -1422,6 +1468,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
switch (this) {
case PRODUCER: return "The application produces documents of the specified type.";
case CONSUMER: return "The application consumes documents of the specified type.";
case NULL: return null;
default: return "?";
}
}
@ -1429,6 +1476,7 @@ public class Conformance extends DomainResource implements IBaseConformance {
switch (this) {
case PRODUCER: return "Producer";
case CONSUMER: return "Consumer";
case NULL: return null;
default: return "?";
}
}

View File

@ -95,6 +95,7 @@ public class ContactPoint extends Type implements ICompositeType {
case EMAIL: return "email";
case PAGER: return "pager";
case OTHER: return "other";
case NULL: return null;
default: return "?";
}
}
@ -105,6 +106,7 @@ public class ContactPoint extends Type implements ICompositeType {
case EMAIL: return "http://hl7.org/fhir/contact-point-system";
case PAGER: return "http://hl7.org/fhir/contact-point-system";
case OTHER: return "http://hl7.org/fhir/contact-point-system";
case NULL: return null;
default: return "?";
}
}
@ -115,6 +117,7 @@ public class ContactPoint extends Type implements ICompositeType {
case EMAIL: return "The value is an email address.";
case PAGER: return "The value is a pager number. These may be local pager numbers that are only usable on a particular pager system.";
case OTHER: return "A contact that is not a phone, fax, or email address. The format of the value SHOULD be a URL. This is intended for various personal contacts including blogs, Twitter, Facebook, etc. Do not use for email addresses. If this is not a URL, then it will require human interpretation.";
case NULL: return null;
default: return "?";
}
}
@ -125,6 +128,7 @@ public class ContactPoint extends Type implements ICompositeType {
case EMAIL: return "Email";
case PAGER: return "Pager";
case OTHER: return "URL";
case NULL: return null;
default: return "?";
}
}
@ -230,6 +234,7 @@ public class ContactPoint extends Type implements ICompositeType {
case TEMP: return "temp";
case OLD: return "old";
case MOBILE: return "mobile";
case NULL: return null;
default: return "?";
}
}
@ -240,6 +245,7 @@ public class ContactPoint extends Type implements ICompositeType {
case TEMP: return "http://hl7.org/fhir/contact-point-use";
case OLD: return "http://hl7.org/fhir/contact-point-use";
case MOBILE: return "http://hl7.org/fhir/contact-point-use";
case NULL: return null;
default: return "?";
}
}
@ -250,6 +256,7 @@ public class ContactPoint extends Type implements ICompositeType {
case TEMP: return "A temporary contact point. The period can provide more detailed information.";
case OLD: return "This contact point is no longer in use (or was never correct, but retained for records).";
case MOBILE: return "A telecommunication device that moves and stays with its owner. May have characteristics of all other use codes, suitable for urgent matters, not the first choice for routine business.";
case NULL: return null;
default: return "?";
}
}
@ -260,6 +267,7 @@ public class ContactPoint extends Type implements ICompositeType {
case TEMP: return "Temp";
case OLD: return "Old";
case MOBILE: return "Mobile";
case NULL: return null;
default: return "?";
}
}

View File

@ -108,6 +108,7 @@ public class DataElement extends DomainResource {
case CONVERTABLE: return "convertable";
case SCALEABLE: return "scaleable";
case FLEXIBLE: return "flexible";
case NULL: return null;
default: return "?";
}
}
@ -119,6 +120,7 @@ public class DataElement extends DomainResource {
case CONVERTABLE: return "http://hl7.org/fhir/dataelement-stringency";
case SCALEABLE: return "http://hl7.org/fhir/dataelement-stringency";
case FLEXIBLE: return "http://hl7.org/fhir/dataelement-stringency";
case NULL: return null;
default: return "?";
}
}
@ -130,6 +132,7 @@ public class DataElement extends DomainResource {
case CONVERTABLE: return "The data element allows multiple units of measure that are convertable between each other (e.g. inches and centimeters) and/or allows data to be captured in multiple value sets for which a known mapping exists allowing conversion of meaning.";
case SCALEABLE: return "A convertable data element where unit conversions are different only by a power of 10; e.g. g, mg, kg.";
case FLEXIBLE: return "The data element is unconstrained in units, choice of data types and/or choice of vocabulary such that automated comparison of data captured using the data element is not possible.";
case NULL: return null;
default: return "?";
}
}
@ -141,6 +144,7 @@ public class DataElement extends DomainResource {
case CONVERTABLE: return "Convertable";
case SCALEABLE: return "Scaleable";
case FLEXIBLE: return "Flexible";
case NULL: return null;
default: return "?";
}
}

View File

@ -85,6 +85,7 @@ public class DetectedIssue extends DomainResource {
case HIGH: return "high";
case MODERATE: return "moderate";
case LOW: return "low";
case NULL: return null;
default: return "?";
}
}
@ -93,6 +94,7 @@ public class DetectedIssue extends DomainResource {
case HIGH: return "http://hl7.org/fhir/detectedissue-severity";
case MODERATE: return "http://hl7.org/fhir/detectedissue-severity";
case LOW: return "http://hl7.org/fhir/detectedissue-severity";
case NULL: return null;
default: return "?";
}
}
@ -101,6 +103,7 @@ public class DetectedIssue extends DomainResource {
case HIGH: return "Indicates the issue may be life-threatening or has the potential to cause permanent injury.";
case MODERATE: return "Indicates the issue may result in noticeable adverse consequences but is unlikely to be life-threatening or cause permanent injury.";
case LOW: return "Indicates the issue may result in some adverse consequences but is unlikely to substantially affect the situation of the subject.";
case NULL: return null;
default: return "?";
}
}
@ -109,6 +112,7 @@ public class DetectedIssue extends DomainResource {
case HIGH: return "High";
case MODERATE: return "Moderate";
case LOW: return "Low";
case NULL: return null;
default: return "?";
}
}

View File

@ -83,6 +83,7 @@ public class Device extends DomainResource {
case AVAILABLE: return "available";
case NOTAVAILABLE: return "not-available";
case ENTEREDINERROR: return "entered-in-error";
case NULL: return null;
default: return "?";
}
}
@ -91,6 +92,7 @@ public class Device extends DomainResource {
case AVAILABLE: return "http://hl7.org/fhir/devicestatus";
case NOTAVAILABLE: return "http://hl7.org/fhir/devicestatus";
case ENTEREDINERROR: return "http://hl7.org/fhir/devicestatus";
case NULL: return null;
default: return "?";
}
}
@ -99,6 +101,7 @@ public class Device extends DomainResource {
case AVAILABLE: return "The Device is available for use.";
case NOTAVAILABLE: return "The Device is no longer available for use (e.g. lost, expired, damaged).";
case ENTEREDINERROR: return "The Device was entered in error and voided.";
case NULL: return null;
default: return "?";
}
}
@ -107,6 +110,7 @@ public class Device extends DomainResource {
case AVAILABLE: return "Available";
case NOTAVAILABLE: return "Not Available";
case ENTEREDINERROR: return "Entered in Error";
case NULL: return null;
default: return "?";
}
}

View File

@ -141,6 +141,7 @@ public class DeviceComponent extends DomainResource {
case MECHANICAL: return "mechanical";
case ACOUSTICAL: return "acoustical";
case MANUAL: return "manual";
case NULL: return null;
default: return "?";
}
}
@ -157,6 +158,7 @@ public class DeviceComponent extends DomainResource {
case MECHANICAL: return "http://hl7.org/fhir/measurement-principle";
case ACOUSTICAL: return "http://hl7.org/fhir/measurement-principle";
case MANUAL: return "http://hl7.org/fhir/measurement-principle";
case NULL: return null;
default: return "?";
}
}
@ -173,6 +175,7 @@ public class DeviceComponent extends DomainResource {
case MECHANICAL: return "Measurement is done using the mechanical principle.";
case ACOUSTICAL: return "Measurement is done using the acoustical principle.";
case MANUAL: return "Measurement is done using the manual principle.";
case NULL: return null;
default: return "?";
}
}
@ -189,6 +192,7 @@ public class DeviceComponent extends DomainResource {
case MECHANICAL: return "MSP Mechanical";
case ACOUSTICAL: return "MSP Acoustical";
case MANUAL: return "MSP Manual";
case NULL: return null;
default: return "?";
}
}

View File

@ -84,6 +84,7 @@ public class DeviceMetric extends DomainResource {
case ON: return "on";
case OFF: return "off";
case STANDBY: return "standby";
case NULL: return null;
default: return "?";
}
}
@ -92,6 +93,7 @@ public class DeviceMetric extends DomainResource {
case ON: return "http://hl7.org/fhir/metric-operational-status";
case OFF: return "http://hl7.org/fhir/metric-operational-status";
case STANDBY: return "http://hl7.org/fhir/metric-operational-status";
case NULL: return null;
default: return "?";
}
}
@ -100,6 +102,7 @@ public class DeviceMetric extends DomainResource {
case ON: return "The DeviceMetric is operating and will generate DeviceObservations.";
case OFF: return "The DeviceMetric is not operating.";
case STANDBY: return "The DeviceMetric is operating, but will not generate any DeviceObservations.";
case NULL: return null;
default: return "?";
}
}
@ -108,6 +111,7 @@ public class DeviceMetric extends DomainResource {
case ON: return "On";
case OFF: return "Off";
case STANDBY: return "Standby";
case NULL: return null;
default: return "?";
}
}
@ -222,6 +226,7 @@ public class DeviceMetric extends DomainResource {
case MAGENTA: return "magenta";
case CYAN: return "cyan";
case WHITE: return "white";
case NULL: return null;
default: return "?";
}
}
@ -235,6 +240,7 @@ public class DeviceMetric extends DomainResource {
case MAGENTA: return "http://hl7.org/fhir/metric-color";
case CYAN: return "http://hl7.org/fhir/metric-color";
case WHITE: return "http://hl7.org/fhir/metric-color";
case NULL: return null;
default: return "?";
}
}
@ -248,6 +254,7 @@ public class DeviceMetric extends DomainResource {
case MAGENTA: return "Color for representation - magenta.";
case CYAN: return "Color for representation - cyan.";
case WHITE: return "Color for representation - white.";
case NULL: return null;
default: return "?";
}
}
@ -261,6 +268,7 @@ public class DeviceMetric extends DomainResource {
case MAGENTA: return "Color Magenta";
case CYAN: return "Color Cyan";
case WHITE: return "Color White";
case NULL: return null;
default: return "?";
}
}
@ -377,6 +385,7 @@ public class DeviceMetric extends DomainResource {
case SETTING: return "setting";
case CALCULATION: return "calculation";
case UNSPECIFIED: return "unspecified";
case NULL: return null;
default: return "?";
}
}
@ -386,6 +395,7 @@ public class DeviceMetric extends DomainResource {
case SETTING: return "http://hl7.org/fhir/metric-category";
case CALCULATION: return "http://hl7.org/fhir/metric-category";
case UNSPECIFIED: return "http://hl7.org/fhir/metric-category";
case NULL: return null;
default: return "?";
}
}
@ -395,6 +405,7 @@ public class DeviceMetric extends DomainResource {
case SETTING: return "DeviceObservations generated for this DeviceMetric is a setting that will influence the behavior of the Device.";
case CALCULATION: return "DeviceObservations generated for this DeviceMetric are calculated.";
case UNSPECIFIED: return "The category of this DeviceMetric is unspecified.";
case NULL: return null;
default: return "?";
}
}
@ -404,6 +415,7 @@ public class DeviceMetric extends DomainResource {
case SETTING: return "Setting";
case CALCULATION: return "Calculation";
case UNSPECIFIED: return "Unspecified";
case NULL: return null;
default: return "?";
}
}
@ -496,6 +508,7 @@ public class DeviceMetric extends DomainResource {
case OFFSET: return "offset";
case GAIN: return "gain";
case TWOPOINT: return "two-point";
case NULL: return null;
default: return "?";
}
}
@ -505,6 +518,7 @@ public class DeviceMetric extends DomainResource {
case OFFSET: return "http://hl7.org/fhir/metric-calibration-type";
case GAIN: return "http://hl7.org/fhir/metric-calibration-type";
case TWOPOINT: return "http://hl7.org/fhir/metric-calibration-type";
case NULL: return null;
default: return "?";
}
}
@ -514,6 +528,7 @@ public class DeviceMetric extends DomainResource {
case OFFSET: return "TODO";
case GAIN: return "TODO";
case TWOPOINT: return "TODO";
case NULL: return null;
default: return "?";
}
}
@ -523,6 +538,7 @@ public class DeviceMetric extends DomainResource {
case OFFSET: return "Offset";
case GAIN: return "Gain";
case TWOPOINT: return "Two Point";
case NULL: return null;
default: return "?";
}
}
@ -615,6 +631,7 @@ public class DeviceMetric extends DomainResource {
case CALIBRATIONREQUIRED: return "calibration-required";
case CALIBRATED: return "calibrated";
case UNSPECIFIED: return "unspecified";
case NULL: return null;
default: return "?";
}
}
@ -624,6 +641,7 @@ public class DeviceMetric extends DomainResource {
case CALIBRATIONREQUIRED: return "http://hl7.org/fhir/metric-calibration-state";
case CALIBRATED: return "http://hl7.org/fhir/metric-calibration-state";
case UNSPECIFIED: return "http://hl7.org/fhir/metric-calibration-state";
case NULL: return null;
default: return "?";
}
}
@ -633,6 +651,7 @@ public class DeviceMetric extends DomainResource {
case CALIBRATIONREQUIRED: return "The metric needs to be calibrated.";
case CALIBRATED: return "The metric has been calibrated.";
case UNSPECIFIED: return "The state of calibration of this metric is unspecified.";
case NULL: return null;
default: return "?";
}
}
@ -642,6 +661,7 @@ public class DeviceMetric extends DomainResource {
case CALIBRATIONREQUIRED: return "Calibration Required";
case CALIBRATED: return "Calibrated";
case UNSPECIFIED: return "Unspecified";
case NULL: return null;
default: return "?";
}
}

View File

@ -131,6 +131,7 @@ public class DeviceUseRequest extends DomainResource {
case SUSPENDED: return "suspended";
case REJECTED: return "rejected";
case ABORTED: return "aborted";
case NULL: return null;
default: return "?";
}
}
@ -146,6 +147,7 @@ public class DeviceUseRequest extends DomainResource {
case SUSPENDED: return "http://hl7.org/fhir/device-use-request-status";
case REJECTED: return "http://hl7.org/fhir/device-use-request-status";
case ABORTED: return "http://hl7.org/fhir/device-use-request-status";
case NULL: return null;
default: return "?";
}
}
@ -161,6 +163,7 @@ public class DeviceUseRequest extends DomainResource {
case SUSPENDED: return "The request has been held by originating system/user request.";
case REJECTED: return "The receiving system has declined to fulfill the request.";
case ABORTED: return "The request was attempted, but due to some procedural error, it could not be completed.";
case NULL: return null;
default: return "?";
}
}
@ -176,6 +179,7 @@ public class DeviceUseRequest extends DomainResource {
case SUSPENDED: return "Suspended";
case REJECTED: return "Rejected";
case ABORTED: return "Aborted";
case NULL: return null;
default: return "?";
}
}
@ -304,6 +308,7 @@ public class DeviceUseRequest extends DomainResource {
case URGENT: return "urgent";
case STAT: return "stat";
case ASAP: return "asap";
case NULL: return null;
default: return "?";
}
}
@ -313,6 +318,7 @@ public class DeviceUseRequest extends DomainResource {
case URGENT: return "http://hl7.org/fhir/device-use-request-priority";
case STAT: return "http://hl7.org/fhir/device-use-request-priority";
case ASAP: return "http://hl7.org/fhir/device-use-request-priority";
case NULL: return null;
default: return "?";
}
}
@ -322,6 +328,7 @@ public class DeviceUseRequest extends DomainResource {
case URGENT: return "The request should be done urgently.";
case STAT: return "The request is time-critical.";
case ASAP: return "The request should be acted on as soon as possible.";
case NULL: return null;
default: return "?";
}
}
@ -331,6 +338,7 @@ public class DeviceUseRequest extends DomainResource {
case URGENT: return "Urgent";
case STAT: return "Stat";
case ASAP: return "ASAP";
case NULL: return null;
default: return "?";
}
}

View File

@ -161,6 +161,7 @@ public class DiagnosticOrder extends DomainResource {
case REJECTED: return "rejected";
case FAILED: return "failed";
case ENTEREDINERROR: return "entered-in-error";
case NULL: return null;
default: return "?";
}
}
@ -180,6 +181,7 @@ public class DiagnosticOrder extends DomainResource {
case REJECTED: return "http://hl7.org/fhir/diagnostic-order-status";
case FAILED: return "http://hl7.org/fhir/diagnostic-order-status";
case ENTEREDINERROR: return "http://hl7.org/fhir/diagnostic-order-status";
case NULL: return null;
default: return "?";
}
}
@ -199,6 +201,7 @@ public class DiagnosticOrder extends DomainResource {
case REJECTED: return "The receiving system has declined to fulfill the request.";
case FAILED: return "The diagnostic investigation was attempted, but due to some procedural error, it could not be completed.";
case ENTEREDINERROR: return "The request was entered in error and voided.";
case NULL: return null;
default: return "?";
}
}
@ -218,6 +221,7 @@ public class DiagnosticOrder extends DomainResource {
case REJECTED: return "Rejected";
case FAILED: return "Failed";
case ENTEREDINERROR: return "Entered in Error";
case NULL: return null;
default: return "?";
}
}
@ -370,6 +374,7 @@ public class DiagnosticOrder extends DomainResource {
case URGENT: return "urgent";
case STAT: return "stat";
case ASAP: return "asap";
case NULL: return null;
default: return "?";
}
}
@ -379,6 +384,7 @@ public class DiagnosticOrder extends DomainResource {
case URGENT: return "http://hl7.org/fhir/diagnostic-order-priority";
case STAT: return "http://hl7.org/fhir/diagnostic-order-priority";
case ASAP: return "http://hl7.org/fhir/diagnostic-order-priority";
case NULL: return null;
default: return "?";
}
}
@ -388,6 +394,7 @@ public class DiagnosticOrder extends DomainResource {
case URGENT: return "The order should be urgently.";
case STAT: return "The order is time-critical.";
case ASAP: return "The order should be acted on as soon as possible.";
case NULL: return null;
default: return "?";
}
}
@ -397,6 +404,7 @@ public class DiagnosticOrder extends DomainResource {
case URGENT: return "Urgent";
case STAT: return "Stat";
case ASAP: return "ASAP";
case NULL: return null;
default: return "?";
}
}

Some files were not shown because too many files have changed in this diff Show More