package org.hl7.fhir.dstu2016may.model; /* Copyright (c) 2011+, HL7, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of HL7 nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ // Generated on Sun, May 8, 2016 03:05+1000 for FHIR v1.4.0 import java.util.ArrayList; import java.util.List; import org.hl7.fhir.exceptions.FHIRException; import org.hl7.fhir.instance.model.api.IBaseBackboneElement; import org.hl7.fhir.utilities.Utilities; import ca.uhn.fhir.model.api.annotation.Block; import ca.uhn.fhir.model.api.annotation.Child; import ca.uhn.fhir.model.api.annotation.Description; import ca.uhn.fhir.model.api.annotation.ResourceDef; import ca.uhn.fhir.model.api.annotation.SearchParamDefinition; /** * The details of a healthcare service available at a location. */ @ResourceDef(name="HealthcareService", profile="http://hl7.org/fhir/Profile/HealthcareService") public class HealthcareService extends DomainResource { public enum DaysOfWeek { /** * Monday */ MON, /** * Tuesday */ TUE, /** * Wednesday */ WED, /** * Thursday */ THU, /** * Friday */ FRI, /** * Saturday */ SAT, /** * Sunday */ SUN, /** * added to help the parsers */ NULL; public static DaysOfWeek fromCode(String codeString) throws FHIRException { if (codeString == null || "".equals(codeString)) return null; if ("mon".equals(codeString)) return MON; if ("tue".equals(codeString)) return TUE; if ("wed".equals(codeString)) return WED; if ("thu".equals(codeString)) return THU; if ("fri".equals(codeString)) return FRI; if ("sat".equals(codeString)) return SAT; if ("sun".equals(codeString)) return SUN; throw new FHIRException("Unknown DaysOfWeek code '"+codeString+"'"); } public String toCode() { switch (this) { case MON: return "mon"; case TUE: return "tue"; case WED: return "wed"; case THU: return "thu"; case FRI: return "fri"; case SAT: return "sat"; case SUN: return "sun"; default: return "?"; } } public String getSystem() { switch (this) { case MON: return "http://hl7.org/fhir/days-of-week"; case TUE: return "http://hl7.org/fhir/days-of-week"; case WED: return "http://hl7.org/fhir/days-of-week"; case THU: return "http://hl7.org/fhir/days-of-week"; 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"; default: return "?"; } } public String getDefinition() { switch (this) { case MON: return "Monday"; case TUE: return "Tuesday"; case WED: return "Wednesday"; case THU: return "Thursday"; case FRI: return "Friday"; case SAT: return "Saturday"; case SUN: return "Sunday"; default: return "?"; } } public String getDisplay() { switch (this) { case MON: return "Monday"; case TUE: return "Tuesday"; case WED: return "Wednesday"; case THU: return "Thursday"; case FRI: return "Friday"; case SAT: return "Saturday"; case SUN: return "Sunday"; default: return "?"; } } } public static class DaysOfWeekEnumFactory implements EnumFactory<DaysOfWeek> { public DaysOfWeek fromCode(String codeString) throws IllegalArgumentException { if (codeString == null || "".equals(codeString)) if (codeString == null || "".equals(codeString)) return null; if ("mon".equals(codeString)) return DaysOfWeek.MON; if ("tue".equals(codeString)) return DaysOfWeek.TUE; if ("wed".equals(codeString)) return DaysOfWeek.WED; if ("thu".equals(codeString)) return DaysOfWeek.THU; if ("fri".equals(codeString)) return DaysOfWeek.FRI; if ("sat".equals(codeString)) return DaysOfWeek.SAT; if ("sun".equals(codeString)) return DaysOfWeek.SUN; throw new IllegalArgumentException("Unknown DaysOfWeek code '"+codeString+"'"); } public Enumeration<DaysOfWeek> fromType(Base code) throws FHIRException { if (code == null || code.isEmpty()) return null; String codeString = ((PrimitiveType) code).asStringValue(); if (codeString == null || "".equals(codeString)) return null; if ("mon".equals(codeString)) return new Enumeration<DaysOfWeek>(this, DaysOfWeek.MON); if ("tue".equals(codeString)) return new Enumeration<DaysOfWeek>(this, DaysOfWeek.TUE); if ("wed".equals(codeString)) return new Enumeration<DaysOfWeek>(this, DaysOfWeek.WED); if ("thu".equals(codeString)) return new Enumeration<DaysOfWeek>(this, DaysOfWeek.THU); if ("fri".equals(codeString)) return new Enumeration<DaysOfWeek>(this, DaysOfWeek.FRI); if ("sat".equals(codeString)) return new Enumeration<DaysOfWeek>(this, DaysOfWeek.SAT); if ("sun".equals(codeString)) return new Enumeration<DaysOfWeek>(this, DaysOfWeek.SUN); throw new FHIRException("Unknown DaysOfWeek code '"+codeString+"'"); } public String toCode(DaysOfWeek code) { if (code == DaysOfWeek.MON) return "mon"; if (code == DaysOfWeek.TUE) return "tue"; if (code == DaysOfWeek.WED) return "wed"; if (code == DaysOfWeek.THU) return "thu"; if (code == DaysOfWeek.FRI) return "fri"; if (code == DaysOfWeek.SAT) return "sat"; if (code == DaysOfWeek.SUN) return "sun"; return "?"; } public String toSystem(DaysOfWeek code) { return code.getSystem(); } } @Block() public static class HealthcareServiceAvailableTimeComponent extends BackboneElement implements IBaseBackboneElement { /** * Indicates which days of the week are available between the start and end Times. */ @Child(name = "daysOfWeek", type = {CodeType.class}, order=1, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false) @Description(shortDefinition="mon | tue | wed | thu | fri | sat | sun", formalDefinition="Indicates which days of the week are available between the start and end Times." ) protected List<Enumeration<DaysOfWeek>> daysOfWeek; /** * Is this always available? (hence times are irrelevant) e.g. 24 hour service. */ @Child(name = "allDay", type = {BooleanType.class}, order=2, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Always available? e.g. 24 hour service", formalDefinition="Is this always available? (hence times are irrelevant) e.g. 24 hour service." ) protected BooleanType allDay; /** * The opening time of day. Note: If the AllDay flag is set, then this time is ignored. */ @Child(name = "availableStartTime", type = {TimeType.class}, order=3, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Opening time of day (ignored if allDay = true)", formalDefinition="The opening time of day. Note: If the AllDay flag is set, then this time is ignored." ) protected TimeType availableStartTime; /** * The closing time of day. Note: If the AllDay flag is set, then this time is ignored. */ @Child(name = "availableEndTime", type = {TimeType.class}, order=4, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Closing time of day (ignored if allDay = true)", formalDefinition="The closing time of day. Note: If the AllDay flag is set, then this time is ignored." ) protected TimeType availableEndTime; private static final long serialVersionUID = -2139510127L; /** * Constructor */ public HealthcareServiceAvailableTimeComponent() { super(); } /** * @return {@link #daysOfWeek} (Indicates which days of the week are available between the start and end Times.) */ public List<Enumeration<DaysOfWeek>> getDaysOfWeek() { if (this.daysOfWeek == null) this.daysOfWeek = new ArrayList<Enumeration<DaysOfWeek>>(); return this.daysOfWeek; } public boolean hasDaysOfWeek() { if (this.daysOfWeek == null) return false; for (Enumeration<DaysOfWeek> item : this.daysOfWeek) if (!item.isEmpty()) return true; return false; } /** * @return {@link #daysOfWeek} (Indicates which days of the week are available between the start and end Times.) */ // syntactic sugar public Enumeration<DaysOfWeek> addDaysOfWeekElement() {//2 Enumeration<DaysOfWeek> t = new Enumeration<DaysOfWeek>(new DaysOfWeekEnumFactory()); if (this.daysOfWeek == null) this.daysOfWeek = new ArrayList<Enumeration<DaysOfWeek>>(); this.daysOfWeek.add(t); return t; } /** * @param value {@link #daysOfWeek} (Indicates which days of the week are available between the start and end Times.) */ public HealthcareServiceAvailableTimeComponent addDaysOfWeek(DaysOfWeek value) { //1 Enumeration<DaysOfWeek> t = new Enumeration<DaysOfWeek>(new DaysOfWeekEnumFactory()); t.setValue(value); if (this.daysOfWeek == null) this.daysOfWeek = new ArrayList<Enumeration<DaysOfWeek>>(); this.daysOfWeek.add(t); return this; } /** * @param value {@link #daysOfWeek} (Indicates which days of the week are available between the start and end Times.) */ public boolean hasDaysOfWeek(DaysOfWeek value) { if (this.daysOfWeek == null) return false; for (Enumeration<DaysOfWeek> v : this.daysOfWeek) if (v.getValue().equals(value)) // code return true; return false; } /** * @return {@link #allDay} (Is this always available? (hence times are irrelevant) e.g. 24 hour service.). This is the underlying object with id, value and extensions. The accessor "getAllDay" gives direct access to the value */ public BooleanType getAllDayElement() { if (this.allDay == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create HealthcareServiceAvailableTimeComponent.allDay"); else if (Configuration.doAutoCreate()) this.allDay = new BooleanType(); // bb return this.allDay; } public boolean hasAllDayElement() { return this.allDay != null && !this.allDay.isEmpty(); } public boolean hasAllDay() { return this.allDay != null && !this.allDay.isEmpty(); } /** * @param value {@link #allDay} (Is this always available? (hence times are irrelevant) e.g. 24 hour service.). This is the underlying object with id, value and extensions. The accessor "getAllDay" gives direct access to the value */ public HealthcareServiceAvailableTimeComponent setAllDayElement(BooleanType value) { this.allDay = value; return this; } /** * @return Is this always available? (hence times are irrelevant) e.g. 24 hour service. */ public boolean getAllDay() { return this.allDay == null || this.allDay.isEmpty() ? false : this.allDay.getValue(); } /** * @param value Is this always available? (hence times are irrelevant) e.g. 24 hour service. */ public HealthcareServiceAvailableTimeComponent setAllDay(boolean value) { if (this.allDay == null) this.allDay = new BooleanType(); this.allDay.setValue(value); return this; } /** * @return {@link #availableStartTime} (The opening time of day. Note: If the AllDay flag is set, then this time is ignored.). This is the underlying object with id, value and extensions. The accessor "getAvailableStartTime" gives direct access to the value */ public TimeType getAvailableStartTimeElement() { if (this.availableStartTime == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create HealthcareServiceAvailableTimeComponent.availableStartTime"); else if (Configuration.doAutoCreate()) this.availableStartTime = new TimeType(); // bb return this.availableStartTime; } public boolean hasAvailableStartTimeElement() { return this.availableStartTime != null && !this.availableStartTime.isEmpty(); } public boolean hasAvailableStartTime() { return this.availableStartTime != null && !this.availableStartTime.isEmpty(); } /** * @param value {@link #availableStartTime} (The opening time of day. Note: If the AllDay flag is set, then this time is ignored.). This is the underlying object with id, value and extensions. The accessor "getAvailableStartTime" gives direct access to the value */ public HealthcareServiceAvailableTimeComponent setAvailableStartTimeElement(TimeType value) { this.availableStartTime = value; return this; } /** * @return The opening time of day. Note: If the AllDay flag is set, then this time is ignored. */ public String getAvailableStartTime() { return this.availableStartTime == null ? null : this.availableStartTime.getValue(); } /** * @param value The opening time of day. Note: If the AllDay flag is set, then this time is ignored. */ public HealthcareServiceAvailableTimeComponent setAvailableStartTime(String value) { if (value == null) this.availableStartTime = null; else { if (this.availableStartTime == null) this.availableStartTime = new TimeType(); this.availableStartTime.setValue(value); } return this; } /** * @return {@link #availableEndTime} (The closing time of day. Note: If the AllDay flag is set, then this time is ignored.). This is the underlying object with id, value and extensions. The accessor "getAvailableEndTime" gives direct access to the value */ public TimeType getAvailableEndTimeElement() { if (this.availableEndTime == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create HealthcareServiceAvailableTimeComponent.availableEndTime"); else if (Configuration.doAutoCreate()) this.availableEndTime = new TimeType(); // bb return this.availableEndTime; } public boolean hasAvailableEndTimeElement() { return this.availableEndTime != null && !this.availableEndTime.isEmpty(); } public boolean hasAvailableEndTime() { return this.availableEndTime != null && !this.availableEndTime.isEmpty(); } /** * @param value {@link #availableEndTime} (The closing time of day. Note: If the AllDay flag is set, then this time is ignored.). This is the underlying object with id, value and extensions. The accessor "getAvailableEndTime" gives direct access to the value */ public HealthcareServiceAvailableTimeComponent setAvailableEndTimeElement(TimeType value) { this.availableEndTime = value; return this; } /** * @return The closing time of day. Note: If the AllDay flag is set, then this time is ignored. */ public String getAvailableEndTime() { return this.availableEndTime == null ? null : this.availableEndTime.getValue(); } /** * @param value The closing time of day. Note: If the AllDay flag is set, then this time is ignored. */ public HealthcareServiceAvailableTimeComponent setAvailableEndTime(String value) { if (value == null) this.availableEndTime = null; else { if (this.availableEndTime == null) this.availableEndTime = new TimeType(); this.availableEndTime.setValue(value); } return this; } protected void listChildren(List<Property> childrenList) { super.listChildren(childrenList); childrenList.add(new Property("daysOfWeek", "code", "Indicates which days of the week are available between the start and end Times.", 0, java.lang.Integer.MAX_VALUE, daysOfWeek)); childrenList.add(new Property("allDay", "boolean", "Is this always available? (hence times are irrelevant) e.g. 24 hour service.", 0, java.lang.Integer.MAX_VALUE, allDay)); childrenList.add(new Property("availableStartTime", "time", "The opening time of day. Note: If the AllDay flag is set, then this time is ignored.", 0, java.lang.Integer.MAX_VALUE, availableStartTime)); childrenList.add(new Property("availableEndTime", "time", "The closing time of day. Note: If the AllDay flag is set, then this time is ignored.", 0, java.lang.Integer.MAX_VALUE, availableEndTime)); } @Override public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException { switch (hash) { case 68050338: /*daysOfWeek*/ return this.daysOfWeek == null ? new Base[0] : this.daysOfWeek.toArray(new Base[this.daysOfWeek.size()]); // Enumeration<DaysOfWeek> case -1414913477: /*allDay*/ return this.allDay == null ? new Base[0] : new Base[] {this.allDay}; // BooleanType case -1039453818: /*availableStartTime*/ return this.availableStartTime == null ? new Base[0] : new Base[] {this.availableStartTime}; // TimeType case 101151551: /*availableEndTime*/ return this.availableEndTime == null ? new Base[0] : new Base[] {this.availableEndTime}; // TimeType default: return super.getProperty(hash, name, checkValid); } } @Override public void setProperty(int hash, String name, Base value) throws FHIRException { switch (hash) { case 68050338: // daysOfWeek this.getDaysOfWeek().add(new DaysOfWeekEnumFactory().fromType(value)); // Enumeration<DaysOfWeek> break; case -1414913477: // allDay this.allDay = castToBoolean(value); // BooleanType break; case -1039453818: // availableStartTime this.availableStartTime = castToTime(value); // TimeType break; case 101151551: // availableEndTime this.availableEndTime = castToTime(value); // TimeType break; default: super.setProperty(hash, name, value); } } @Override public void setProperty(String name, Base value) throws FHIRException { if (name.equals("daysOfWeek")) this.getDaysOfWeek().add(new DaysOfWeekEnumFactory().fromType(value)); else if (name.equals("allDay")) this.allDay = castToBoolean(value); // BooleanType else if (name.equals("availableStartTime")) this.availableStartTime = castToTime(value); // TimeType else if (name.equals("availableEndTime")) this.availableEndTime = castToTime(value); // TimeType else super.setProperty(name, value); } @Override public Base makeProperty(int hash, String name) throws FHIRException { switch (hash) { case 68050338: throw new FHIRException("Cannot make property daysOfWeek as it is not a complex type"); // Enumeration<DaysOfWeek> case -1414913477: throw new FHIRException("Cannot make property allDay as it is not a complex type"); // BooleanType case -1039453818: throw new FHIRException("Cannot make property availableStartTime as it is not a complex type"); // TimeType case 101151551: throw new FHIRException("Cannot make property availableEndTime as it is not a complex type"); // TimeType default: return super.makeProperty(hash, name); } } @Override public Base addChild(String name) throws FHIRException { if (name.equals("daysOfWeek")) { throw new FHIRException("Cannot call addChild on a primitive type HealthcareService.daysOfWeek"); } else if (name.equals("allDay")) { throw new FHIRException("Cannot call addChild on a primitive type HealthcareService.allDay"); } else if (name.equals("availableStartTime")) { throw new FHIRException("Cannot call addChild on a primitive type HealthcareService.availableStartTime"); } else if (name.equals("availableEndTime")) { throw new FHIRException("Cannot call addChild on a primitive type HealthcareService.availableEndTime"); } else return super.addChild(name); } public HealthcareServiceAvailableTimeComponent copy() { HealthcareServiceAvailableTimeComponent dst = new HealthcareServiceAvailableTimeComponent(); copyValues(dst); if (daysOfWeek != null) { dst.daysOfWeek = new ArrayList<Enumeration<DaysOfWeek>>(); for (Enumeration<DaysOfWeek> i : daysOfWeek) dst.daysOfWeek.add(i.copy()); }; dst.allDay = allDay == null ? null : allDay.copy(); dst.availableStartTime = availableStartTime == null ? null : availableStartTime.copy(); dst.availableEndTime = availableEndTime == null ? null : availableEndTime.copy(); return dst; } @Override public boolean equalsDeep(Base other) { if (!super.equalsDeep(other)) return false; if (!(other instanceof HealthcareServiceAvailableTimeComponent)) return false; HealthcareServiceAvailableTimeComponent o = (HealthcareServiceAvailableTimeComponent) other; return compareDeep(daysOfWeek, o.daysOfWeek, true) && compareDeep(allDay, o.allDay, true) && compareDeep(availableStartTime, o.availableStartTime, true) && compareDeep(availableEndTime, o.availableEndTime, true); } @Override public boolean equalsShallow(Base other) { if (!super.equalsShallow(other)) return false; if (!(other instanceof HealthcareServiceAvailableTimeComponent)) return false; HealthcareServiceAvailableTimeComponent o = (HealthcareServiceAvailableTimeComponent) other; return compareValues(daysOfWeek, o.daysOfWeek, true) && compareValues(allDay, o.allDay, true) && compareValues(availableStartTime, o.availableStartTime, true) && compareValues(availableEndTime, o.availableEndTime, true); } public boolean isEmpty() { return super.isEmpty() && (daysOfWeek == null || daysOfWeek.isEmpty()) && (allDay == null || allDay.isEmpty()) && (availableStartTime == null || availableStartTime.isEmpty()) && (availableEndTime == null || availableEndTime.isEmpty()) ; } public String fhirType() { return "HealthcareService.availableTime"; } } @Block() public static class HealthcareServiceNotAvailableComponent extends BackboneElement implements IBaseBackboneElement { /** * The reason that can be presented to the user as to why this time is not available. */ @Child(name = "description", type = {StringType.class}, order=1, min=1, max=1, modifier=false, summary=false) @Description(shortDefinition="Reason presented to the user explaining why time not available", formalDefinition="The reason that can be presented to the user as to why this time is not available." ) protected StringType description; /** * Service is not available (seasonally or for a public holiday) from this date. */ @Child(name = "during", type = {Period.class}, order=2, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Service not availablefrom this date", formalDefinition="Service is not available (seasonally or for a public holiday) from this date." ) protected Period during; private static final long serialVersionUID = 310849929L; /** * Constructor */ public HealthcareServiceNotAvailableComponent() { super(); } /** * Constructor */ public HealthcareServiceNotAvailableComponent(StringType description) { super(); this.description = description; } /** * @return {@link #description} (The reason that can be presented to the user as to why this time is not available.). This is the underlying object with id, value and extensions. The accessor "getDescription" gives direct access to the value */ public StringType getDescriptionElement() { if (this.description == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create HealthcareServiceNotAvailableComponent.description"); else if (Configuration.doAutoCreate()) this.description = new StringType(); // bb return this.description; } public boolean hasDescriptionElement() { return this.description != null && !this.description.isEmpty(); } public boolean hasDescription() { return this.description != null && !this.description.isEmpty(); } /** * @param value {@link #description} (The reason that can be presented to the user as to why this time is not available.). This is the underlying object with id, value and extensions. The accessor "getDescription" gives direct access to the value */ public HealthcareServiceNotAvailableComponent setDescriptionElement(StringType value) { this.description = value; return this; } /** * @return The reason that can be presented to the user as to why this time is not available. */ public String getDescription() { return this.description == null ? null : this.description.getValue(); } /** * @param value The reason that can be presented to the user as to why this time is not available. */ public HealthcareServiceNotAvailableComponent setDescription(String value) { if (this.description == null) this.description = new StringType(); this.description.setValue(value); return this; } /** * @return {@link #during} (Service is not available (seasonally or for a public holiday) from this date.) */ public Period getDuring() { if (this.during == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create HealthcareServiceNotAvailableComponent.during"); else if (Configuration.doAutoCreate()) this.during = new Period(); // cc return this.during; } public boolean hasDuring() { return this.during != null && !this.during.isEmpty(); } /** * @param value {@link #during} (Service is not available (seasonally or for a public holiday) from this date.) */ public HealthcareServiceNotAvailableComponent setDuring(Period value) { this.during = value; return this; } protected void listChildren(List<Property> childrenList) { super.listChildren(childrenList); childrenList.add(new Property("description", "string", "The reason that can be presented to the user as to why this time is not available.", 0, java.lang.Integer.MAX_VALUE, description)); childrenList.add(new Property("during", "Period", "Service is not available (seasonally or for a public holiday) from this date.", 0, java.lang.Integer.MAX_VALUE, during)); } @Override public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException { switch (hash) { case -1724546052: /*description*/ return this.description == null ? new Base[0] : new Base[] {this.description}; // StringType case -1320499647: /*during*/ return this.during == null ? new Base[0] : new Base[] {this.during}; // Period default: return super.getProperty(hash, name, checkValid); } } @Override public void setProperty(int hash, String name, Base value) throws FHIRException { switch (hash) { case -1724546052: // description this.description = castToString(value); // StringType break; case -1320499647: // during this.during = castToPeriod(value); // Period break; default: super.setProperty(hash, name, value); } } @Override public void setProperty(String name, Base value) throws FHIRException { if (name.equals("description")) this.description = castToString(value); // StringType else if (name.equals("during")) this.during = castToPeriod(value); // Period else super.setProperty(name, value); } @Override public Base makeProperty(int hash, String name) throws FHIRException { switch (hash) { case -1724546052: throw new FHIRException("Cannot make property description as it is not a complex type"); // StringType case -1320499647: return getDuring(); // Period default: return super.makeProperty(hash, name); } } @Override public Base addChild(String name) throws FHIRException { if (name.equals("description")) { throw new FHIRException("Cannot call addChild on a primitive type HealthcareService.description"); } else if (name.equals("during")) { this.during = new Period(); return this.during; } else return super.addChild(name); } public HealthcareServiceNotAvailableComponent copy() { HealthcareServiceNotAvailableComponent dst = new HealthcareServiceNotAvailableComponent(); copyValues(dst); dst.description = description == null ? null : description.copy(); dst.during = during == null ? null : during.copy(); return dst; } @Override public boolean equalsDeep(Base other) { if (!super.equalsDeep(other)) return false; if (!(other instanceof HealthcareServiceNotAvailableComponent)) return false; HealthcareServiceNotAvailableComponent o = (HealthcareServiceNotAvailableComponent) other; return compareDeep(description, o.description, true) && compareDeep(during, o.during, true); } @Override public boolean equalsShallow(Base other) { if (!super.equalsShallow(other)) return false; if (!(other instanceof HealthcareServiceNotAvailableComponent)) return false; HealthcareServiceNotAvailableComponent o = (HealthcareServiceNotAvailableComponent) other; return compareValues(description, o.description, true); } public boolean isEmpty() { return super.isEmpty() && (description == null || description.isEmpty()) && (during == null || during.isEmpty()) ; } public String fhirType() { return "HealthcareService.notAvailable"; } } /** * External identifiers for this item. */ @Child(name = "identifier", type = {Identifier.class}, order=0, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=true) @Description(shortDefinition="External identifiers for this item", formalDefinition="External identifiers for this item." ) protected List<Identifier> identifier; /** * The organization that provides this healthcare service. */ @Child(name = "providedBy", type = {Organization.class}, order=1, min=0, max=1, modifier=false, summary=true) @Description(shortDefinition="Organization that provides this service", formalDefinition="The organization that provides this healthcare service." ) protected Reference providedBy; /** * The actual object that is the target of the reference (The organization that provides this healthcare service.) */ protected Organization providedByTarget; /** * Identifies the broad category of service being performed or delivered. */ @Child(name = "serviceCategory", type = {CodeableConcept.class}, order=2, min=0, max=1, modifier=false, summary=true) @Description(shortDefinition="Broad category of service being performed or delivered", formalDefinition="Identifies the broad category of service being performed or delivered." ) protected CodeableConcept serviceCategory; /** * The specific type of service that may be delivered or performed. */ @Child(name = "serviceType", type = {CodeableConcept.class}, order=3, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=true) @Description(shortDefinition="Type of service that may be delivered or performed", formalDefinition="The specific type of service that may be delivered or performed." ) protected List<CodeableConcept> serviceType; /** * Collection of specialties handled by the service site. This is more of a medical term. */ @Child(name = "specialty", type = {CodeableConcept.class}, order=4, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=true) @Description(shortDefinition="Specialties handled by the HealthcareService", formalDefinition="Collection of specialties handled by the service site. This is more of a medical term." ) protected List<CodeableConcept> specialty; /** * The location(s) where this healthcare service may be provided. */ @Child(name = "location", type = {Location.class}, order=5, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=true) @Description(shortDefinition="Location(s) where service may be provided", formalDefinition="The location(s) where this healthcare service may be provided." ) protected List<Reference> location; /** * The actual objects that are the target of the reference (The location(s) where this healthcare service may be provided.) */ protected List<Location> locationTarget; /** * Further description of the service as it would be presented to a consumer while searching. */ @Child(name = "serviceName", type = {StringType.class}, order=6, min=0, max=1, modifier=false, summary=true) @Description(shortDefinition="Description of service as presented to a consumer while searching", formalDefinition="Further description of the service as it would be presented to a consumer while searching." ) protected StringType serviceName; /** * Any additional description of the service and/or any specific issues not covered by the other attributes, which can be displayed as further detail under the serviceName. */ @Child(name = "comment", type = {StringType.class}, order=7, min=0, max=1, modifier=false, summary=true) @Description(shortDefinition="Additional description and/or any specific issues not covered elsewhere", formalDefinition="Any additional description of the service and/or any specific issues not covered by the other attributes, which can be displayed as further detail under the serviceName." ) protected StringType comment; /** * Extra details about the service that can't be placed in the other fields. */ @Child(name = "extraDetails", type = {StringType.class}, order=8, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Extra details about the service that can't be placed in the other fields", formalDefinition="Extra details about the service that can't be placed in the other fields." ) protected StringType extraDetails; /** * If there is a photo/symbol associated with this HealthcareService, it may be included here to facilitate quick identification of the service in a list. */ @Child(name = "photo", type = {Attachment.class}, order=9, min=0, max=1, modifier=false, summary=true) @Description(shortDefinition="Facilitates quick identification of the service", formalDefinition="If there is a photo/symbol associated with this HealthcareService, it may be included here to facilitate quick identification of the service in a list." ) protected Attachment photo; /** * List of contacts related to this specific healthcare service. */ @Child(name = "telecom", type = {ContactPoint.class}, order=10, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false) @Description(shortDefinition="Contacts related to the healthcare service", formalDefinition="List of contacts related to this specific healthcare service." ) protected List<ContactPoint> telecom; /** * The location(s) that this service is available to (not where the service is provided). */ @Child(name = "coverageArea", type = {Location.class}, order=11, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false) @Description(shortDefinition="Location(s) service is inteded for/available to", formalDefinition="The location(s) that this service is available to (not where the service is provided)." ) protected List<Reference> coverageArea; /** * The actual objects that are the target of the reference (The location(s) that this service is available to (not where the service is provided).) */ protected List<Location> coverageAreaTarget; /** * The code(s) that detail the conditions under which the healthcare service is available/offered. */ @Child(name = "serviceProvisionCode", type = {CodeableConcept.class}, order=12, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false) @Description(shortDefinition="Conditions under which service is available/offered", formalDefinition="The code(s) that detail the conditions under which the healthcare service is available/offered." ) protected List<CodeableConcept> serviceProvisionCode; /** * Does this service have specific eligibility requirements that need to be met in order to use the service? */ @Child(name = "eligibility", type = {CodeableConcept.class}, order=13, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Specific eligibility requirements required to use the service", formalDefinition="Does this service have specific eligibility requirements that need to be met in order to use the service?" ) protected CodeableConcept eligibility; /** * Describes the eligibility conditions for the service. */ @Child(name = "eligibilityNote", type = {StringType.class}, order=14, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Describes the eligibility conditions for the service", formalDefinition="Describes the eligibility conditions for the service." ) protected StringType eligibilityNote; /** * Program Names that can be used to categorize the service. */ @Child(name = "programName", type = {StringType.class}, order=15, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false) @Description(shortDefinition="Program Names that categorize the service", formalDefinition="Program Names that can be used to categorize the service." ) protected List<StringType> programName; /** * Collection of characteristics (attributes). */ @Child(name = "characteristic", type = {CodeableConcept.class}, order=16, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false) @Description(shortDefinition="Collection of characteristics (attributes)", formalDefinition="Collection of characteristics (attributes)." ) protected List<CodeableConcept> characteristic; /** * Ways that the service accepts referrals, if this is not provided then it is implied that no referral is required. */ @Child(name = "referralMethod", type = {CodeableConcept.class}, order=17, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false) @Description(shortDefinition="Ways that the service accepts referrals", formalDefinition="Ways that the service accepts referrals, if this is not provided then it is implied that no referral is required." ) protected List<CodeableConcept> referralMethod; /** * The public part of the 'keys' allocated to an Organization by an accredited body to support secure exchange of data over the internet. To be provided by the Organization, where available. */ @Child(name = "publicKey", type = {StringType.class}, order=18, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="PKI Public keys to support secure communications", formalDefinition="The public part of the 'keys' allocated to an Organization by an accredited body to support secure exchange of data over the internet. To be provided by the Organization, where available." ) protected StringType publicKey; /** * Indicates whether or not a prospective consumer will require an appointment for a particular service at a site to be provided by the Organization. Indicates if an appointment is required for access to this service. */ @Child(name = "appointmentRequired", type = {BooleanType.class}, order=19, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="If an appointment is required for access to this service", formalDefinition="Indicates whether or not a prospective consumer will require an appointment for a particular service at a site to be provided by the Organization. Indicates if an appointment is required for access to this service." ) protected BooleanType appointmentRequired; /** * A collection of times that the Service Site is available. */ @Child(name = "availableTime", type = {}, order=20, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false) @Description(shortDefinition="Times the Service Site is available", formalDefinition="A collection of times that the Service Site is available." ) protected List<HealthcareServiceAvailableTimeComponent> availableTime; /** * The HealthcareService is not available during this period of time due to the provided reason. */ @Child(name = "notAvailable", type = {}, order=21, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false) @Description(shortDefinition="Not available during this time due to provided reason", formalDefinition="The HealthcareService is not available during this period of time due to the provided reason." ) protected List<HealthcareServiceNotAvailableComponent> notAvailable; /** * A description of site availability exceptions, e.g. public holiday availability. Succinctly describing all possible exceptions to normal site availability as details in the available Times and not available Times. */ @Child(name = "availabilityExceptions", type = {StringType.class}, order=22, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Description of availability exceptions", formalDefinition="A description of site availability exceptions, e.g. public holiday availability. Succinctly describing all possible exceptions to normal site availability as details in the available Times and not available Times." ) protected StringType availabilityExceptions; private static final long serialVersionUID = -874217100L; /** * Constructor */ public HealthcareService() { super(); } /** * @return {@link #identifier} (External identifiers for this item.) */ public List<Identifier> getIdentifier() { if (this.identifier == null) this.identifier = new ArrayList<Identifier>(); return this.identifier; } public boolean hasIdentifier() { if (this.identifier == null) return false; for (Identifier item : this.identifier) if (!item.isEmpty()) return true; return false; } /** * @return {@link #identifier} (External identifiers for this item.) */ // syntactic sugar public Identifier addIdentifier() { //3 Identifier t = new Identifier(); if (this.identifier == null) this.identifier = new ArrayList<Identifier>(); this.identifier.add(t); return t; } // syntactic sugar public HealthcareService addIdentifier(Identifier t) { //3 if (t == null) return this; if (this.identifier == null) this.identifier = new ArrayList<Identifier>(); this.identifier.add(t); return this; } /** * @return {@link #providedBy} (The organization that provides this healthcare service.) */ public Reference getProvidedBy() { if (this.providedBy == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create HealthcareService.providedBy"); else if (Configuration.doAutoCreate()) this.providedBy = new Reference(); // cc return this.providedBy; } public boolean hasProvidedBy() { return this.providedBy != null && !this.providedBy.isEmpty(); } /** * @param value {@link #providedBy} (The organization that provides this healthcare service.) */ public HealthcareService setProvidedBy(Reference value) { this.providedBy = value; return this; } /** * @return {@link #providedBy} The actual object that is the target of the reference. The reference library doesn't populate this, but you can use it to hold the resource if you resolve it. (The organization that provides this healthcare service.) */ public Organization getProvidedByTarget() { if (this.providedByTarget == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create HealthcareService.providedBy"); else if (Configuration.doAutoCreate()) this.providedByTarget = new Organization(); // aa return this.providedByTarget; } /** * @param value {@link #providedBy} The actual object that is the target of the reference. The reference library doesn't use these, but you can use it to hold the resource if you resolve it. (The organization that provides this healthcare service.) */ public HealthcareService setProvidedByTarget(Organization value) { this.providedByTarget = value; return this; } /** * @return {@link #serviceCategory} (Identifies the broad category of service being performed or delivered.) */ public CodeableConcept getServiceCategory() { if (this.serviceCategory == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create HealthcareService.serviceCategory"); else if (Configuration.doAutoCreate()) this.serviceCategory = new CodeableConcept(); // cc return this.serviceCategory; } public boolean hasServiceCategory() { return this.serviceCategory != null && !this.serviceCategory.isEmpty(); } /** * @param value {@link #serviceCategory} (Identifies the broad category of service being performed or delivered.) */ public HealthcareService setServiceCategory(CodeableConcept value) { this.serviceCategory = value; return this; } /** * @return {@link #serviceType} (The specific type of service that may be delivered or performed.) */ public List<CodeableConcept> getServiceType() { if (this.serviceType == null) this.serviceType = new ArrayList<CodeableConcept>(); return this.serviceType; } public boolean hasServiceType() { if (this.serviceType == null) return false; for (CodeableConcept item : this.serviceType) if (!item.isEmpty()) return true; return false; } /** * @return {@link #serviceType} (The specific type of service that may be delivered or performed.) */ // syntactic sugar public CodeableConcept addServiceType() { //3 CodeableConcept t = new CodeableConcept(); if (this.serviceType == null) this.serviceType = new ArrayList<CodeableConcept>(); this.serviceType.add(t); return t; } // syntactic sugar public HealthcareService addServiceType(CodeableConcept t) { //3 if (t == null) return this; if (this.serviceType == null) this.serviceType = new ArrayList<CodeableConcept>(); this.serviceType.add(t); return this; } /** * @return {@link #specialty} (Collection of specialties handled by the service site. This is more of a medical term.) */ public List<CodeableConcept> getSpecialty() { if (this.specialty == null) this.specialty = new ArrayList<CodeableConcept>(); return this.specialty; } public boolean hasSpecialty() { if (this.specialty == null) return false; for (CodeableConcept item : this.specialty) if (!item.isEmpty()) return true; return false; } /** * @return {@link #specialty} (Collection of specialties handled by the service site. This is more of a medical term.) */ // syntactic sugar public CodeableConcept addSpecialty() { //3 CodeableConcept t = new CodeableConcept(); if (this.specialty == null) this.specialty = new ArrayList<CodeableConcept>(); this.specialty.add(t); return t; } // syntactic sugar public HealthcareService addSpecialty(CodeableConcept t) { //3 if (t == null) return this; if (this.specialty == null) this.specialty = new ArrayList<CodeableConcept>(); this.specialty.add(t); return this; } /** * @return {@link #location} (The location(s) where this healthcare service may be provided.) */ public List<Reference> getLocation() { if (this.location == null) this.location = new ArrayList<Reference>(); return this.location; } public boolean hasLocation() { if (this.location == null) return false; for (Reference item : this.location) if (!item.isEmpty()) return true; return false; } /** * @return {@link #location} (The location(s) where this healthcare service may be provided.) */ // syntactic sugar public Reference addLocation() { //3 Reference t = new Reference(); if (this.location == null) this.location = new ArrayList<Reference>(); this.location.add(t); return t; } // syntactic sugar public HealthcareService addLocation(Reference t) { //3 if (t == null) return this; if (this.location == null) this.location = new ArrayList<Reference>(); this.location.add(t); return this; } /** * @return {@link #location} (The actual objects that are the target of the reference. The reference library doesn't populate this, but you can use this to hold the resources if you resolvethemt. The location(s) where this healthcare service may be provided.) */ public List<Location> getLocationTarget() { if (this.locationTarget == null) this.locationTarget = new ArrayList<Location>(); return this.locationTarget; } // syntactic sugar /** * @return {@link #location} (Add an actual object that is the target of the reference. The reference library doesn't use these, but you can use this to hold the resources if you resolvethemt. The location(s) where this healthcare service may be provided.) */ public Location addLocationTarget() { Location r = new Location(); if (this.locationTarget == null) this.locationTarget = new ArrayList<Location>(); this.locationTarget.add(r); return r; } /** * @return {@link #serviceName} (Further description of the service as it would be presented to a consumer while searching.). This is the underlying object with id, value and extensions. The accessor "getServiceName" gives direct access to the value */ public StringType getServiceNameElement() { if (this.serviceName == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create HealthcareService.serviceName"); else if (Configuration.doAutoCreate()) this.serviceName = new StringType(); // bb return this.serviceName; } public boolean hasServiceNameElement() { return this.serviceName != null && !this.serviceName.isEmpty(); } public boolean hasServiceName() { return this.serviceName != null && !this.serviceName.isEmpty(); } /** * @param value {@link #serviceName} (Further description of the service as it would be presented to a consumer while searching.). This is the underlying object with id, value and extensions. The accessor "getServiceName" gives direct access to the value */ public HealthcareService setServiceNameElement(StringType value) { this.serviceName = value; return this; } /** * @return Further description of the service as it would be presented to a consumer while searching. */ public String getServiceName() { return this.serviceName == null ? null : this.serviceName.getValue(); } /** * @param value Further description of the service as it would be presented to a consumer while searching. */ public HealthcareService setServiceName(String value) { if (Utilities.noString(value)) this.serviceName = null; else { if (this.serviceName == null) this.serviceName = new StringType(); this.serviceName.setValue(value); } return this; } /** * @return {@link #comment} (Any additional description of the service and/or any specific issues not covered by the other attributes, which can be displayed as further detail under the serviceName.). This is the underlying object with id, value and extensions. The accessor "getComment" gives direct access to the value */ public StringType getCommentElement() { if (this.comment == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create HealthcareService.comment"); else if (Configuration.doAutoCreate()) this.comment = new StringType(); // bb return this.comment; } public boolean hasCommentElement() { return this.comment != null && !this.comment.isEmpty(); } public boolean hasComment() { return this.comment != null && !this.comment.isEmpty(); } /** * @param value {@link #comment} (Any additional description of the service and/or any specific issues not covered by the other attributes, which can be displayed as further detail under the serviceName.). This is the underlying object with id, value and extensions. The accessor "getComment" gives direct access to the value */ public HealthcareService setCommentElement(StringType value) { this.comment = value; return this; } /** * @return Any additional description of the service and/or any specific issues not covered by the other attributes, which can be displayed as further detail under the serviceName. */ public String getComment() { return this.comment == null ? null : this.comment.getValue(); } /** * @param value Any additional description of the service and/or any specific issues not covered by the other attributes, which can be displayed as further detail under the serviceName. */ public HealthcareService setComment(String value) { if (Utilities.noString(value)) this.comment = null; else { if (this.comment == null) this.comment = new StringType(); this.comment.setValue(value); } return this; } /** * @return {@link #extraDetails} (Extra details about the service that can't be placed in the other fields.). This is the underlying object with id, value and extensions. The accessor "getExtraDetails" gives direct access to the value */ public StringType getExtraDetailsElement() { if (this.extraDetails == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create HealthcareService.extraDetails"); else if (Configuration.doAutoCreate()) this.extraDetails = new StringType(); // bb return this.extraDetails; } public boolean hasExtraDetailsElement() { return this.extraDetails != null && !this.extraDetails.isEmpty(); } public boolean hasExtraDetails() { return this.extraDetails != null && !this.extraDetails.isEmpty(); } /** * @param value {@link #extraDetails} (Extra details about the service that can't be placed in the other fields.). This is the underlying object with id, value and extensions. The accessor "getExtraDetails" gives direct access to the value */ public HealthcareService setExtraDetailsElement(StringType value) { this.extraDetails = value; return this; } /** * @return Extra details about the service that can't be placed in the other fields. */ public String getExtraDetails() { return this.extraDetails == null ? null : this.extraDetails.getValue(); } /** * @param value Extra details about the service that can't be placed in the other fields. */ public HealthcareService setExtraDetails(String value) { if (Utilities.noString(value)) this.extraDetails = null; else { if (this.extraDetails == null) this.extraDetails = new StringType(); this.extraDetails.setValue(value); } return this; } /** * @return {@link #photo} (If there is a photo/symbol associated with this HealthcareService, it may be included here to facilitate quick identification of the service in a list.) */ public Attachment getPhoto() { if (this.photo == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create HealthcareService.photo"); else if (Configuration.doAutoCreate()) this.photo = new Attachment(); // cc return this.photo; } public boolean hasPhoto() { return this.photo != null && !this.photo.isEmpty(); } /** * @param value {@link #photo} (If there is a photo/symbol associated with this HealthcareService, it may be included here to facilitate quick identification of the service in a list.) */ public HealthcareService setPhoto(Attachment value) { this.photo = value; return this; } /** * @return {@link #telecom} (List of contacts related to this specific healthcare service.) */ public List<ContactPoint> getTelecom() { if (this.telecom == null) this.telecom = new ArrayList<ContactPoint>(); return this.telecom; } public boolean hasTelecom() { if (this.telecom == null) return false; for (ContactPoint item : this.telecom) if (!item.isEmpty()) return true; return false; } /** * @return {@link #telecom} (List of contacts related to this specific healthcare service.) */ // syntactic sugar public ContactPoint addTelecom() { //3 ContactPoint t = new ContactPoint(); if (this.telecom == null) this.telecom = new ArrayList<ContactPoint>(); this.telecom.add(t); return t; } // syntactic sugar public HealthcareService addTelecom(ContactPoint t) { //3 if (t == null) return this; if (this.telecom == null) this.telecom = new ArrayList<ContactPoint>(); this.telecom.add(t); return this; } /** * @return {@link #coverageArea} (The location(s) that this service is available to (not where the service is provided).) */ public List<Reference> getCoverageArea() { if (this.coverageArea == null) this.coverageArea = new ArrayList<Reference>(); return this.coverageArea; } public boolean hasCoverageArea() { if (this.coverageArea == null) return false; for (Reference item : this.coverageArea) if (!item.isEmpty()) return true; return false; } /** * @return {@link #coverageArea} (The location(s) that this service is available to (not where the service is provided).) */ // syntactic sugar public Reference addCoverageArea() { //3 Reference t = new Reference(); if (this.coverageArea == null) this.coverageArea = new ArrayList<Reference>(); this.coverageArea.add(t); return t; } // syntactic sugar public HealthcareService addCoverageArea(Reference t) { //3 if (t == null) return this; if (this.coverageArea == null) this.coverageArea = new ArrayList<Reference>(); this.coverageArea.add(t); return this; } /** * @return {@link #coverageArea} (The actual objects that are the target of the reference. The reference library doesn't populate this, but you can use this to hold the resources if you resolvethemt. The location(s) that this service is available to (not where the service is provided).) */ public List<Location> getCoverageAreaTarget() { if (this.coverageAreaTarget == null) this.coverageAreaTarget = new ArrayList<Location>(); return this.coverageAreaTarget; } // syntactic sugar /** * @return {@link #coverageArea} (Add an actual object that is the target of the reference. The reference library doesn't use these, but you can use this to hold the resources if you resolvethemt. The location(s) that this service is available to (not where the service is provided).) */ public Location addCoverageAreaTarget() { Location r = new Location(); if (this.coverageAreaTarget == null) this.coverageAreaTarget = new ArrayList<Location>(); this.coverageAreaTarget.add(r); return r; } /** * @return {@link #serviceProvisionCode} (The code(s) that detail the conditions under which the healthcare service is available/offered.) */ public List<CodeableConcept> getServiceProvisionCode() { if (this.serviceProvisionCode == null) this.serviceProvisionCode = new ArrayList<CodeableConcept>(); return this.serviceProvisionCode; } public boolean hasServiceProvisionCode() { if (this.serviceProvisionCode == null) return false; for (CodeableConcept item : this.serviceProvisionCode) if (!item.isEmpty()) return true; return false; } /** * @return {@link #serviceProvisionCode} (The code(s) that detail the conditions under which the healthcare service is available/offered.) */ // syntactic sugar public CodeableConcept addServiceProvisionCode() { //3 CodeableConcept t = new CodeableConcept(); if (this.serviceProvisionCode == null) this.serviceProvisionCode = new ArrayList<CodeableConcept>(); this.serviceProvisionCode.add(t); return t; } // syntactic sugar public HealthcareService addServiceProvisionCode(CodeableConcept t) { //3 if (t == null) return this; if (this.serviceProvisionCode == null) this.serviceProvisionCode = new ArrayList<CodeableConcept>(); this.serviceProvisionCode.add(t); return this; } /** * @return {@link #eligibility} (Does this service have specific eligibility requirements that need to be met in order to use the service?) */ public CodeableConcept getEligibility() { if (this.eligibility == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create HealthcareService.eligibility"); else if (Configuration.doAutoCreate()) this.eligibility = new CodeableConcept(); // cc return this.eligibility; } public boolean hasEligibility() { return this.eligibility != null && !this.eligibility.isEmpty(); } /** * @param value {@link #eligibility} (Does this service have specific eligibility requirements that need to be met in order to use the service?) */ public HealthcareService setEligibility(CodeableConcept value) { this.eligibility = value; return this; } /** * @return {@link #eligibilityNote} (Describes the eligibility conditions for the service.). This is the underlying object with id, value and extensions. The accessor "getEligibilityNote" gives direct access to the value */ public StringType getEligibilityNoteElement() { if (this.eligibilityNote == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create HealthcareService.eligibilityNote"); else if (Configuration.doAutoCreate()) this.eligibilityNote = new StringType(); // bb return this.eligibilityNote; } public boolean hasEligibilityNoteElement() { return this.eligibilityNote != null && !this.eligibilityNote.isEmpty(); } public boolean hasEligibilityNote() { return this.eligibilityNote != null && !this.eligibilityNote.isEmpty(); } /** * @param value {@link #eligibilityNote} (Describes the eligibility conditions for the service.). This is the underlying object with id, value and extensions. The accessor "getEligibilityNote" gives direct access to the value */ public HealthcareService setEligibilityNoteElement(StringType value) { this.eligibilityNote = value; return this; } /** * @return Describes the eligibility conditions for the service. */ public String getEligibilityNote() { return this.eligibilityNote == null ? null : this.eligibilityNote.getValue(); } /** * @param value Describes the eligibility conditions for the service. */ public HealthcareService setEligibilityNote(String value) { if (Utilities.noString(value)) this.eligibilityNote = null; else { if (this.eligibilityNote == null) this.eligibilityNote = new StringType(); this.eligibilityNote.setValue(value); } return this; } /** * @return {@link #programName} (Program Names that can be used to categorize the service.) */ public List<StringType> getProgramName() { if (this.programName == null) this.programName = new ArrayList<StringType>(); return this.programName; } public boolean hasProgramName() { if (this.programName == null) return false; for (StringType item : this.programName) if (!item.isEmpty()) return true; return false; } /** * @return {@link #programName} (Program Names that can be used to categorize the service.) */ // syntactic sugar public StringType addProgramNameElement() {//2 StringType t = new StringType(); if (this.programName == null) this.programName = new ArrayList<StringType>(); this.programName.add(t); return t; } /** * @param value {@link #programName} (Program Names that can be used to categorize the service.) */ public HealthcareService addProgramName(String value) { //1 StringType t = new StringType(); t.setValue(value); if (this.programName == null) this.programName = new ArrayList<StringType>(); this.programName.add(t); return this; } /** * @param value {@link #programName} (Program Names that can be used to categorize the service.) */ public boolean hasProgramName(String value) { if (this.programName == null) return false; for (StringType v : this.programName) if (v.equals(value)) // string return true; return false; } /** * @return {@link #characteristic} (Collection of characteristics (attributes).) */ public List<CodeableConcept> getCharacteristic() { if (this.characteristic == null) this.characteristic = new ArrayList<CodeableConcept>(); return this.characteristic; } public boolean hasCharacteristic() { if (this.characteristic == null) return false; for (CodeableConcept item : this.characteristic) if (!item.isEmpty()) return true; return false; } /** * @return {@link #characteristic} (Collection of characteristics (attributes).) */ // syntactic sugar public CodeableConcept addCharacteristic() { //3 CodeableConcept t = new CodeableConcept(); if (this.characteristic == null) this.characteristic = new ArrayList<CodeableConcept>(); this.characteristic.add(t); return t; } // syntactic sugar public HealthcareService addCharacteristic(CodeableConcept t) { //3 if (t == null) return this; if (this.characteristic == null) this.characteristic = new ArrayList<CodeableConcept>(); this.characteristic.add(t); return this; } /** * @return {@link #referralMethod} (Ways that the service accepts referrals, if this is not provided then it is implied that no referral is required.) */ public List<CodeableConcept> getReferralMethod() { if (this.referralMethod == null) this.referralMethod = new ArrayList<CodeableConcept>(); return this.referralMethod; } public boolean hasReferralMethod() { if (this.referralMethod == null) return false; for (CodeableConcept item : this.referralMethod) if (!item.isEmpty()) return true; return false; } /** * @return {@link #referralMethod} (Ways that the service accepts referrals, if this is not provided then it is implied that no referral is required.) */ // syntactic sugar public CodeableConcept addReferralMethod() { //3 CodeableConcept t = new CodeableConcept(); if (this.referralMethod == null) this.referralMethod = new ArrayList<CodeableConcept>(); this.referralMethod.add(t); return t; } // syntactic sugar public HealthcareService addReferralMethod(CodeableConcept t) { //3 if (t == null) return this; if (this.referralMethod == null) this.referralMethod = new ArrayList<CodeableConcept>(); this.referralMethod.add(t); return this; } /** * @return {@link #publicKey} (The public part of the 'keys' allocated to an Organization by an accredited body to support secure exchange of data over the internet. To be provided by the Organization, where available.). This is the underlying object with id, value and extensions. The accessor "getPublicKey" gives direct access to the value */ public StringType getPublicKeyElement() { if (this.publicKey == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create HealthcareService.publicKey"); else if (Configuration.doAutoCreate()) this.publicKey = new StringType(); // bb return this.publicKey; } public boolean hasPublicKeyElement() { return this.publicKey != null && !this.publicKey.isEmpty(); } public boolean hasPublicKey() { return this.publicKey != null && !this.publicKey.isEmpty(); } /** * @param value {@link #publicKey} (The public part of the 'keys' allocated to an Organization by an accredited body to support secure exchange of data over the internet. To be provided by the Organization, where available.). This is the underlying object with id, value and extensions. The accessor "getPublicKey" gives direct access to the value */ public HealthcareService setPublicKeyElement(StringType value) { this.publicKey = value; return this; } /** * @return The public part of the 'keys' allocated to an Organization by an accredited body to support secure exchange of data over the internet. To be provided by the Organization, where available. */ public String getPublicKey() { return this.publicKey == null ? null : this.publicKey.getValue(); } /** * @param value The public part of the 'keys' allocated to an Organization by an accredited body to support secure exchange of data over the internet. To be provided by the Organization, where available. */ public HealthcareService setPublicKey(String value) { if (Utilities.noString(value)) this.publicKey = null; else { if (this.publicKey == null) this.publicKey = new StringType(); this.publicKey.setValue(value); } return this; } /** * @return {@link #appointmentRequired} (Indicates whether or not a prospective consumer will require an appointment for a particular service at a site to be provided by the Organization. Indicates if an appointment is required for access to this service.). This is the underlying object with id, value and extensions. The accessor "getAppointmentRequired" gives direct access to the value */ public BooleanType getAppointmentRequiredElement() { if (this.appointmentRequired == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create HealthcareService.appointmentRequired"); else if (Configuration.doAutoCreate()) this.appointmentRequired = new BooleanType(); // bb return this.appointmentRequired; } public boolean hasAppointmentRequiredElement() { return this.appointmentRequired != null && !this.appointmentRequired.isEmpty(); } public boolean hasAppointmentRequired() { return this.appointmentRequired != null && !this.appointmentRequired.isEmpty(); } /** * @param value {@link #appointmentRequired} (Indicates whether or not a prospective consumer will require an appointment for a particular service at a site to be provided by the Organization. Indicates if an appointment is required for access to this service.). This is the underlying object with id, value and extensions. The accessor "getAppointmentRequired" gives direct access to the value */ public HealthcareService setAppointmentRequiredElement(BooleanType value) { this.appointmentRequired = value; return this; } /** * @return Indicates whether or not a prospective consumer will require an appointment for a particular service at a site to be provided by the Organization. Indicates if an appointment is required for access to this service. */ public boolean getAppointmentRequired() { return this.appointmentRequired == null || this.appointmentRequired.isEmpty() ? false : this.appointmentRequired.getValue(); } /** * @param value Indicates whether or not a prospective consumer will require an appointment for a particular service at a site to be provided by the Organization. Indicates if an appointment is required for access to this service. */ public HealthcareService setAppointmentRequired(boolean value) { if (this.appointmentRequired == null) this.appointmentRequired = new BooleanType(); this.appointmentRequired.setValue(value); return this; } /** * @return {@link #availableTime} (A collection of times that the Service Site is available.) */ public List<HealthcareServiceAvailableTimeComponent> getAvailableTime() { if (this.availableTime == null) this.availableTime = new ArrayList<HealthcareServiceAvailableTimeComponent>(); return this.availableTime; } public boolean hasAvailableTime() { if (this.availableTime == null) return false; for (HealthcareServiceAvailableTimeComponent item : this.availableTime) if (!item.isEmpty()) return true; return false; } /** * @return {@link #availableTime} (A collection of times that the Service Site is available.) */ // syntactic sugar public HealthcareServiceAvailableTimeComponent addAvailableTime() { //3 HealthcareServiceAvailableTimeComponent t = new HealthcareServiceAvailableTimeComponent(); if (this.availableTime == null) this.availableTime = new ArrayList<HealthcareServiceAvailableTimeComponent>(); this.availableTime.add(t); return t; } // syntactic sugar public HealthcareService addAvailableTime(HealthcareServiceAvailableTimeComponent t) { //3 if (t == null) return this; if (this.availableTime == null) this.availableTime = new ArrayList<HealthcareServiceAvailableTimeComponent>(); this.availableTime.add(t); return this; } /** * @return {@link #notAvailable} (The HealthcareService is not available during this period of time due to the provided reason.) */ public List<HealthcareServiceNotAvailableComponent> getNotAvailable() { if (this.notAvailable == null) this.notAvailable = new ArrayList<HealthcareServiceNotAvailableComponent>(); return this.notAvailable; } public boolean hasNotAvailable() { if (this.notAvailable == null) return false; for (HealthcareServiceNotAvailableComponent item : this.notAvailable) if (!item.isEmpty()) return true; return false; } /** * @return {@link #notAvailable} (The HealthcareService is not available during this period of time due to the provided reason.) */ // syntactic sugar public HealthcareServiceNotAvailableComponent addNotAvailable() { //3 HealthcareServiceNotAvailableComponent t = new HealthcareServiceNotAvailableComponent(); if (this.notAvailable == null) this.notAvailable = new ArrayList<HealthcareServiceNotAvailableComponent>(); this.notAvailable.add(t); return t; } // syntactic sugar public HealthcareService addNotAvailable(HealthcareServiceNotAvailableComponent t) { //3 if (t == null) return this; if (this.notAvailable == null) this.notAvailable = new ArrayList<HealthcareServiceNotAvailableComponent>(); this.notAvailable.add(t); return this; } /** * @return {@link #availabilityExceptions} (A description of site availability exceptions, e.g. public holiday availability. Succinctly describing all possible exceptions to normal site availability as details in the available Times and not available Times.). This is the underlying object with id, value and extensions. The accessor "getAvailabilityExceptions" gives direct access to the value */ public StringType getAvailabilityExceptionsElement() { if (this.availabilityExceptions == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create HealthcareService.availabilityExceptions"); else if (Configuration.doAutoCreate()) this.availabilityExceptions = new StringType(); // bb return this.availabilityExceptions; } public boolean hasAvailabilityExceptionsElement() { return this.availabilityExceptions != null && !this.availabilityExceptions.isEmpty(); } public boolean hasAvailabilityExceptions() { return this.availabilityExceptions != null && !this.availabilityExceptions.isEmpty(); } /** * @param value {@link #availabilityExceptions} (A description of site availability exceptions, e.g. public holiday availability. Succinctly describing all possible exceptions to normal site availability as details in the available Times and not available Times.). This is the underlying object with id, value and extensions. The accessor "getAvailabilityExceptions" gives direct access to the value */ public HealthcareService setAvailabilityExceptionsElement(StringType value) { this.availabilityExceptions = value; return this; } /** * @return A description of site availability exceptions, e.g. public holiday availability. Succinctly describing all possible exceptions to normal site availability as details in the available Times and not available Times. */ public String getAvailabilityExceptions() { return this.availabilityExceptions == null ? null : this.availabilityExceptions.getValue(); } /** * @param value A description of site availability exceptions, e.g. public holiday availability. Succinctly describing all possible exceptions to normal site availability as details in the available Times and not available Times. */ public HealthcareService setAvailabilityExceptions(String value) { if (Utilities.noString(value)) this.availabilityExceptions = null; else { if (this.availabilityExceptions == null) this.availabilityExceptions = new StringType(); this.availabilityExceptions.setValue(value); } return this; } protected void listChildren(List<Property> childrenList) { super.listChildren(childrenList); childrenList.add(new Property("identifier", "Identifier", "External identifiers for this item.", 0, java.lang.Integer.MAX_VALUE, identifier)); childrenList.add(new Property("providedBy", "Reference(Organization)", "The organization that provides this healthcare service.", 0, java.lang.Integer.MAX_VALUE, providedBy)); childrenList.add(new Property("serviceCategory", "CodeableConcept", "Identifies the broad category of service being performed or delivered.", 0, java.lang.Integer.MAX_VALUE, serviceCategory)); childrenList.add(new Property("serviceType", "CodeableConcept", "The specific type of service that may be delivered or performed.", 0, java.lang.Integer.MAX_VALUE, serviceType)); childrenList.add(new Property("specialty", "CodeableConcept", "Collection of specialties handled by the service site. This is more of a medical term.", 0, java.lang.Integer.MAX_VALUE, specialty)); childrenList.add(new Property("location", "Reference(Location)", "The location(s) where this healthcare service may be provided.", 0, java.lang.Integer.MAX_VALUE, location)); childrenList.add(new Property("serviceName", "string", "Further description of the service as it would be presented to a consumer while searching.", 0, java.lang.Integer.MAX_VALUE, serviceName)); childrenList.add(new Property("comment", "string", "Any additional description of the service and/or any specific issues not covered by the other attributes, which can be displayed as further detail under the serviceName.", 0, java.lang.Integer.MAX_VALUE, comment)); childrenList.add(new Property("extraDetails", "string", "Extra details about the service that can't be placed in the other fields.", 0, java.lang.Integer.MAX_VALUE, extraDetails)); childrenList.add(new Property("photo", "Attachment", "If there is a photo/symbol associated with this HealthcareService, it may be included here to facilitate quick identification of the service in a list.", 0, java.lang.Integer.MAX_VALUE, photo)); childrenList.add(new Property("telecom", "ContactPoint", "List of contacts related to this specific healthcare service.", 0, java.lang.Integer.MAX_VALUE, telecom)); childrenList.add(new Property("coverageArea", "Reference(Location)", "The location(s) that this service is available to (not where the service is provided).", 0, java.lang.Integer.MAX_VALUE, coverageArea)); childrenList.add(new Property("serviceProvisionCode", "CodeableConcept", "The code(s) that detail the conditions under which the healthcare service is available/offered.", 0, java.lang.Integer.MAX_VALUE, serviceProvisionCode)); childrenList.add(new Property("eligibility", "CodeableConcept", "Does this service have specific eligibility requirements that need to be met in order to use the service?", 0, java.lang.Integer.MAX_VALUE, eligibility)); childrenList.add(new Property("eligibilityNote", "string", "Describes the eligibility conditions for the service.", 0, java.lang.Integer.MAX_VALUE, eligibilityNote)); childrenList.add(new Property("programName", "string", "Program Names that can be used to categorize the service.", 0, java.lang.Integer.MAX_VALUE, programName)); childrenList.add(new Property("characteristic", "CodeableConcept", "Collection of characteristics (attributes).", 0, java.lang.Integer.MAX_VALUE, characteristic)); childrenList.add(new Property("referralMethod", "CodeableConcept", "Ways that the service accepts referrals, if this is not provided then it is implied that no referral is required.", 0, java.lang.Integer.MAX_VALUE, referralMethod)); childrenList.add(new Property("publicKey", "string", "The public part of the 'keys' allocated to an Organization by an accredited body to support secure exchange of data over the internet. To be provided by the Organization, where available.", 0, java.lang.Integer.MAX_VALUE, publicKey)); childrenList.add(new Property("appointmentRequired", "boolean", "Indicates whether or not a prospective consumer will require an appointment for a particular service at a site to be provided by the Organization. Indicates if an appointment is required for access to this service.", 0, java.lang.Integer.MAX_VALUE, appointmentRequired)); childrenList.add(new Property("availableTime", "", "A collection of times that the Service Site is available.", 0, java.lang.Integer.MAX_VALUE, availableTime)); childrenList.add(new Property("notAvailable", "", "The HealthcareService is not available during this period of time due to the provided reason.", 0, java.lang.Integer.MAX_VALUE, notAvailable)); childrenList.add(new Property("availabilityExceptions", "string", "A description of site availability exceptions, e.g. public holiday availability. Succinctly describing all possible exceptions to normal site availability as details in the available Times and not available Times.", 0, java.lang.Integer.MAX_VALUE, availabilityExceptions)); } @Override public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException { switch (hash) { case -1618432855: /*identifier*/ return this.identifier == null ? new Base[0] : this.identifier.toArray(new Base[this.identifier.size()]); // Identifier case 205136282: /*providedBy*/ return this.providedBy == null ? new Base[0] : new Base[] {this.providedBy}; // Reference case 1281188563: /*serviceCategory*/ return this.serviceCategory == null ? new Base[0] : new Base[] {this.serviceCategory}; // CodeableConcept case -1928370289: /*serviceType*/ return this.serviceType == null ? new Base[0] : this.serviceType.toArray(new Base[this.serviceType.size()]); // CodeableConcept case -1694759682: /*specialty*/ return this.specialty == null ? new Base[0] : this.specialty.toArray(new Base[this.specialty.size()]); // CodeableConcept case 1901043637: /*location*/ return this.location == null ? new Base[0] : this.location.toArray(new Base[this.location.size()]); // Reference case -1928572192: /*serviceName*/ return this.serviceName == null ? new Base[0] : new Base[] {this.serviceName}; // StringType case 950398559: /*comment*/ return this.comment == null ? new Base[0] : new Base[] {this.comment}; // StringType case -1469168622: /*extraDetails*/ return this.extraDetails == null ? new Base[0] : new Base[] {this.extraDetails}; // StringType case 106642994: /*photo*/ return this.photo == null ? new Base[0] : new Base[] {this.photo}; // Attachment case -1429363305: /*telecom*/ return this.telecom == null ? new Base[0] : this.telecom.toArray(new Base[this.telecom.size()]); // ContactPoint case -1532328299: /*coverageArea*/ return this.coverageArea == null ? new Base[0] : this.coverageArea.toArray(new Base[this.coverageArea.size()]); // Reference case 1504575405: /*serviceProvisionCode*/ return this.serviceProvisionCode == null ? new Base[0] : this.serviceProvisionCode.toArray(new Base[this.serviceProvisionCode.size()]); // CodeableConcept case -930847859: /*eligibility*/ return this.eligibility == null ? new Base[0] : new Base[] {this.eligibility}; // CodeableConcept case 1635973407: /*eligibilityNote*/ return this.eligibilityNote == null ? new Base[0] : new Base[] {this.eligibilityNote}; // StringType case 1010379567: /*programName*/ return this.programName == null ? new Base[0] : this.programName.toArray(new Base[this.programName.size()]); // StringType case 366313883: /*characteristic*/ return this.characteristic == null ? new Base[0] : this.characteristic.toArray(new Base[this.characteristic.size()]); // CodeableConcept case -2092740898: /*referralMethod*/ return this.referralMethod == null ? new Base[0] : this.referralMethod.toArray(new Base[this.referralMethod.size()]); // CodeableConcept case 1446899510: /*publicKey*/ return this.publicKey == null ? new Base[0] : new Base[] {this.publicKey}; // StringType case 427220062: /*appointmentRequired*/ return this.appointmentRequired == null ? new Base[0] : new Base[] {this.appointmentRequired}; // BooleanType case 1873069366: /*availableTime*/ return this.availableTime == null ? new Base[0] : this.availableTime.toArray(new Base[this.availableTime.size()]); // HealthcareServiceAvailableTimeComponent case -629572298: /*notAvailable*/ return this.notAvailable == null ? new Base[0] : this.notAvailable.toArray(new Base[this.notAvailable.size()]); // HealthcareServiceNotAvailableComponent case -1149143617: /*availabilityExceptions*/ return this.availabilityExceptions == null ? new Base[0] : new Base[] {this.availabilityExceptions}; // StringType default: return super.getProperty(hash, name, checkValid); } } @Override public void setProperty(int hash, String name, Base value) throws FHIRException { switch (hash) { case -1618432855: // identifier this.getIdentifier().add(castToIdentifier(value)); // Identifier break; case 205136282: // providedBy this.providedBy = castToReference(value); // Reference break; case 1281188563: // serviceCategory this.serviceCategory = castToCodeableConcept(value); // CodeableConcept break; case -1928370289: // serviceType this.getServiceType().add(castToCodeableConcept(value)); // CodeableConcept break; case -1694759682: // specialty this.getSpecialty().add(castToCodeableConcept(value)); // CodeableConcept break; case 1901043637: // location this.getLocation().add(castToReference(value)); // Reference break; case -1928572192: // serviceName this.serviceName = castToString(value); // StringType break; case 950398559: // comment this.comment = castToString(value); // StringType break; case -1469168622: // extraDetails this.extraDetails = castToString(value); // StringType break; case 106642994: // photo this.photo = castToAttachment(value); // Attachment break; case -1429363305: // telecom this.getTelecom().add(castToContactPoint(value)); // ContactPoint break; case -1532328299: // coverageArea this.getCoverageArea().add(castToReference(value)); // Reference break; case 1504575405: // serviceProvisionCode this.getServiceProvisionCode().add(castToCodeableConcept(value)); // CodeableConcept break; case -930847859: // eligibility this.eligibility = castToCodeableConcept(value); // CodeableConcept break; case 1635973407: // eligibilityNote this.eligibilityNote = castToString(value); // StringType break; case 1010379567: // programName this.getProgramName().add(castToString(value)); // StringType break; case 366313883: // characteristic this.getCharacteristic().add(castToCodeableConcept(value)); // CodeableConcept break; case -2092740898: // referralMethod this.getReferralMethod().add(castToCodeableConcept(value)); // CodeableConcept break; case 1446899510: // publicKey this.publicKey = castToString(value); // StringType break; case 427220062: // appointmentRequired this.appointmentRequired = castToBoolean(value); // BooleanType break; case 1873069366: // availableTime this.getAvailableTime().add((HealthcareServiceAvailableTimeComponent) value); // HealthcareServiceAvailableTimeComponent break; case -629572298: // notAvailable this.getNotAvailable().add((HealthcareServiceNotAvailableComponent) value); // HealthcareServiceNotAvailableComponent break; case -1149143617: // availabilityExceptions this.availabilityExceptions = castToString(value); // StringType break; default: super.setProperty(hash, name, value); } } @Override public void setProperty(String name, Base value) throws FHIRException { if (name.equals("identifier")) this.getIdentifier().add(castToIdentifier(value)); else if (name.equals("providedBy")) this.providedBy = castToReference(value); // Reference else if (name.equals("serviceCategory")) this.serviceCategory = castToCodeableConcept(value); // CodeableConcept else if (name.equals("serviceType")) this.getServiceType().add(castToCodeableConcept(value)); else if (name.equals("specialty")) this.getSpecialty().add(castToCodeableConcept(value)); else if (name.equals("location")) this.getLocation().add(castToReference(value)); else if (name.equals("serviceName")) this.serviceName = castToString(value); // StringType else if (name.equals("comment")) this.comment = castToString(value); // StringType else if (name.equals("extraDetails")) this.extraDetails = castToString(value); // StringType else if (name.equals("photo")) this.photo = castToAttachment(value); // Attachment else if (name.equals("telecom")) this.getTelecom().add(castToContactPoint(value)); else if (name.equals("coverageArea")) this.getCoverageArea().add(castToReference(value)); else if (name.equals("serviceProvisionCode")) this.getServiceProvisionCode().add(castToCodeableConcept(value)); else if (name.equals("eligibility")) this.eligibility = castToCodeableConcept(value); // CodeableConcept else if (name.equals("eligibilityNote")) this.eligibilityNote = castToString(value); // StringType else if (name.equals("programName")) this.getProgramName().add(castToString(value)); else if (name.equals("characteristic")) this.getCharacteristic().add(castToCodeableConcept(value)); else if (name.equals("referralMethod")) this.getReferralMethod().add(castToCodeableConcept(value)); else if (name.equals("publicKey")) this.publicKey = castToString(value); // StringType else if (name.equals("appointmentRequired")) this.appointmentRequired = castToBoolean(value); // BooleanType else if (name.equals("availableTime")) this.getAvailableTime().add((HealthcareServiceAvailableTimeComponent) value); else if (name.equals("notAvailable")) this.getNotAvailable().add((HealthcareServiceNotAvailableComponent) value); else if (name.equals("availabilityExceptions")) this.availabilityExceptions = castToString(value); // StringType else super.setProperty(name, value); } @Override public Base makeProperty(int hash, String name) throws FHIRException { switch (hash) { case -1618432855: return addIdentifier(); // Identifier case 205136282: return getProvidedBy(); // Reference case 1281188563: return getServiceCategory(); // CodeableConcept case -1928370289: return addServiceType(); // CodeableConcept case -1694759682: return addSpecialty(); // CodeableConcept case 1901043637: return addLocation(); // Reference case -1928572192: throw new FHIRException("Cannot make property serviceName as it is not a complex type"); // StringType case 950398559: throw new FHIRException("Cannot make property comment as it is not a complex type"); // StringType case -1469168622: throw new FHIRException("Cannot make property extraDetails as it is not a complex type"); // StringType case 106642994: return getPhoto(); // Attachment case -1429363305: return addTelecom(); // ContactPoint case -1532328299: return addCoverageArea(); // Reference case 1504575405: return addServiceProvisionCode(); // CodeableConcept case -930847859: return getEligibility(); // CodeableConcept case 1635973407: throw new FHIRException("Cannot make property eligibilityNote as it is not a complex type"); // StringType case 1010379567: throw new FHIRException("Cannot make property programName as it is not a complex type"); // StringType case 366313883: return addCharacteristic(); // CodeableConcept case -2092740898: return addReferralMethod(); // CodeableConcept case 1446899510: throw new FHIRException("Cannot make property publicKey as it is not a complex type"); // StringType case 427220062: throw new FHIRException("Cannot make property appointmentRequired as it is not a complex type"); // BooleanType case 1873069366: return addAvailableTime(); // HealthcareServiceAvailableTimeComponent case -629572298: return addNotAvailable(); // HealthcareServiceNotAvailableComponent case -1149143617: throw new FHIRException("Cannot make property availabilityExceptions as it is not a complex type"); // StringType default: return super.makeProperty(hash, name); } } @Override public Base addChild(String name) throws FHIRException { if (name.equals("identifier")) { return addIdentifier(); } else if (name.equals("providedBy")) { this.providedBy = new Reference(); return this.providedBy; } else if (name.equals("serviceCategory")) { this.serviceCategory = new CodeableConcept(); return this.serviceCategory; } else if (name.equals("serviceType")) { return addServiceType(); } else if (name.equals("specialty")) { return addSpecialty(); } else if (name.equals("location")) { return addLocation(); } else if (name.equals("serviceName")) { throw new FHIRException("Cannot call addChild on a primitive type HealthcareService.serviceName"); } else if (name.equals("comment")) { throw new FHIRException("Cannot call addChild on a primitive type HealthcareService.comment"); } else if (name.equals("extraDetails")) { throw new FHIRException("Cannot call addChild on a primitive type HealthcareService.extraDetails"); } else if (name.equals("photo")) { this.photo = new Attachment(); return this.photo; } else if (name.equals("telecom")) { return addTelecom(); } else if (name.equals("coverageArea")) { return addCoverageArea(); } else if (name.equals("serviceProvisionCode")) { return addServiceProvisionCode(); } else if (name.equals("eligibility")) { this.eligibility = new CodeableConcept(); return this.eligibility; } else if (name.equals("eligibilityNote")) { throw new FHIRException("Cannot call addChild on a primitive type HealthcareService.eligibilityNote"); } else if (name.equals("programName")) { throw new FHIRException("Cannot call addChild on a primitive type HealthcareService.programName"); } else if (name.equals("characteristic")) { return addCharacteristic(); } else if (name.equals("referralMethod")) { return addReferralMethod(); } else if (name.equals("publicKey")) { throw new FHIRException("Cannot call addChild on a primitive type HealthcareService.publicKey"); } else if (name.equals("appointmentRequired")) { throw new FHIRException("Cannot call addChild on a primitive type HealthcareService.appointmentRequired"); } else if (name.equals("availableTime")) { return addAvailableTime(); } else if (name.equals("notAvailable")) { return addNotAvailable(); } else if (name.equals("availabilityExceptions")) { throw new FHIRException("Cannot call addChild on a primitive type HealthcareService.availabilityExceptions"); } else return super.addChild(name); } public String fhirType() { return "HealthcareService"; } public HealthcareService copy() { HealthcareService dst = new HealthcareService(); copyValues(dst); if (identifier != null) { dst.identifier = new ArrayList<Identifier>(); for (Identifier i : identifier) dst.identifier.add(i.copy()); }; dst.providedBy = providedBy == null ? null : providedBy.copy(); dst.serviceCategory = serviceCategory == null ? null : serviceCategory.copy(); if (serviceType != null) { dst.serviceType = new ArrayList<CodeableConcept>(); for (CodeableConcept i : serviceType) dst.serviceType.add(i.copy()); }; if (specialty != null) { dst.specialty = new ArrayList<CodeableConcept>(); for (CodeableConcept i : specialty) dst.specialty.add(i.copy()); }; if (location != null) { dst.location = new ArrayList<Reference>(); for (Reference i : location) dst.location.add(i.copy()); }; dst.serviceName = serviceName == null ? null : serviceName.copy(); dst.comment = comment == null ? null : comment.copy(); dst.extraDetails = extraDetails == null ? null : extraDetails.copy(); dst.photo = photo == null ? null : photo.copy(); if (telecom != null) { dst.telecom = new ArrayList<ContactPoint>(); for (ContactPoint i : telecom) dst.telecom.add(i.copy()); }; if (coverageArea != null) { dst.coverageArea = new ArrayList<Reference>(); for (Reference i : coverageArea) dst.coverageArea.add(i.copy()); }; if (serviceProvisionCode != null) { dst.serviceProvisionCode = new ArrayList<CodeableConcept>(); for (CodeableConcept i : serviceProvisionCode) dst.serviceProvisionCode.add(i.copy()); }; dst.eligibility = eligibility == null ? null : eligibility.copy(); dst.eligibilityNote = eligibilityNote == null ? null : eligibilityNote.copy(); if (programName != null) { dst.programName = new ArrayList<StringType>(); for (StringType i : programName) dst.programName.add(i.copy()); }; if (characteristic != null) { dst.characteristic = new ArrayList<CodeableConcept>(); for (CodeableConcept i : characteristic) dst.characteristic.add(i.copy()); }; if (referralMethod != null) { dst.referralMethod = new ArrayList<CodeableConcept>(); for (CodeableConcept i : referralMethod) dst.referralMethod.add(i.copy()); }; dst.publicKey = publicKey == null ? null : publicKey.copy(); dst.appointmentRequired = appointmentRequired == null ? null : appointmentRequired.copy(); if (availableTime != null) { dst.availableTime = new ArrayList<HealthcareServiceAvailableTimeComponent>(); for (HealthcareServiceAvailableTimeComponent i : availableTime) dst.availableTime.add(i.copy()); }; if (notAvailable != null) { dst.notAvailable = new ArrayList<HealthcareServiceNotAvailableComponent>(); for (HealthcareServiceNotAvailableComponent i : notAvailable) dst.notAvailable.add(i.copy()); }; dst.availabilityExceptions = availabilityExceptions == null ? null : availabilityExceptions.copy(); return dst; } protected HealthcareService typedCopy() { return copy(); } @Override public boolean equalsDeep(Base other) { if (!super.equalsDeep(other)) return false; if (!(other instanceof HealthcareService)) return false; HealthcareService o = (HealthcareService) other; return compareDeep(identifier, o.identifier, true) && compareDeep(providedBy, o.providedBy, true) && compareDeep(serviceCategory, o.serviceCategory, true) && compareDeep(serviceType, o.serviceType, true) && compareDeep(specialty, o.specialty, true) && compareDeep(location, o.location, true) && compareDeep(serviceName, o.serviceName, true) && compareDeep(comment, o.comment, true) && compareDeep(extraDetails, o.extraDetails, true) && compareDeep(photo, o.photo, true) && compareDeep(telecom, o.telecom, true) && compareDeep(coverageArea, o.coverageArea, true) && compareDeep(serviceProvisionCode, o.serviceProvisionCode, true) && compareDeep(eligibility, o.eligibility, true) && compareDeep(eligibilityNote, o.eligibilityNote, true) && compareDeep(programName, o.programName, true) && compareDeep(characteristic, o.characteristic, true) && compareDeep(referralMethod, o.referralMethod, true) && compareDeep(publicKey, o.publicKey, true) && compareDeep(appointmentRequired, o.appointmentRequired, true) && compareDeep(availableTime, o.availableTime, true) && compareDeep(notAvailable, o.notAvailable, true) && compareDeep(availabilityExceptions, o.availabilityExceptions, true) ; } @Override public boolean equalsShallow(Base other) { if (!super.equalsShallow(other)) return false; if (!(other instanceof HealthcareService)) return false; HealthcareService o = (HealthcareService) other; return compareValues(serviceName, o.serviceName, true) && compareValues(comment, o.comment, true) && compareValues(extraDetails, o.extraDetails, true) && compareValues(eligibilityNote, o.eligibilityNote, true) && compareValues(programName, o.programName, true) && compareValues(publicKey, o.publicKey, true) && compareValues(appointmentRequired, o.appointmentRequired, true) && compareValues(availabilityExceptions, o.availabilityExceptions, true); } public boolean isEmpty() { return super.isEmpty() && (identifier == null || identifier.isEmpty()) && (providedBy == null || providedBy.isEmpty()) && (serviceCategory == null || serviceCategory.isEmpty()) && (serviceType == null || serviceType.isEmpty()) && (specialty == null || specialty.isEmpty()) && (location == null || location.isEmpty()) && (serviceName == null || serviceName.isEmpty()) && (comment == null || comment.isEmpty()) && (extraDetails == null || extraDetails.isEmpty()) && (photo == null || photo.isEmpty()) && (telecom == null || telecom.isEmpty()) && (coverageArea == null || coverageArea.isEmpty()) && (serviceProvisionCode == null || serviceProvisionCode.isEmpty()) && (eligibility == null || eligibility.isEmpty()) && (eligibilityNote == null || eligibilityNote.isEmpty()) && (programName == null || programName.isEmpty()) && (characteristic == null || characteristic.isEmpty()) && (referralMethod == null || referralMethod.isEmpty()) && (publicKey == null || publicKey.isEmpty()) && (appointmentRequired == null || appointmentRequired.isEmpty()) && (availableTime == null || availableTime.isEmpty()) && (notAvailable == null || notAvailable.isEmpty()) && (availabilityExceptions == null || availabilityExceptions.isEmpty()); } @Override public ResourceType getResourceType() { return ResourceType.HealthcareService; } /** * Search parameter: <b>servicecategory</b> * <p> * Description: <b>Service Category of the Healthcare Service</b><br> * Type: <b>token</b><br> * Path: <b>HealthcareService.serviceCategory</b><br> * </p> */ @SearchParamDefinition(name="servicecategory", path="HealthcareService.serviceCategory", description="Service Category of the Healthcare Service", type="token" ) public static final String SP_SERVICECATEGORY = "servicecategory"; /** * <b>Fluent Client</b> search parameter constant for <b>servicecategory</b> * <p> * Description: <b>Service Category of the Healthcare Service</b><br> * Type: <b>token</b><br> * Path: <b>HealthcareService.serviceCategory</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.TokenClientParam SERVICECATEGORY = new ca.uhn.fhir.rest.gclient.TokenClientParam(SP_SERVICECATEGORY); /** * Search parameter: <b>organization</b> * <p> * Description: <b>The organization that provides this Healthcare Service</b><br> * Type: <b>reference</b><br> * Path: <b>HealthcareService.providedBy</b><br> * </p> */ @SearchParamDefinition(name="organization", path="HealthcareService.providedBy", description="The organization that provides this Healthcare Service", type="reference" ) public static final String SP_ORGANIZATION = "organization"; /** * <b>Fluent Client</b> search parameter constant for <b>organization</b> * <p> * Description: <b>The organization that provides this Healthcare Service</b><br> * Type: <b>reference</b><br> * Path: <b>HealthcareService.providedBy</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.ReferenceClientParam ORGANIZATION = new ca.uhn.fhir.rest.gclient.ReferenceClientParam(SP_ORGANIZATION); /** * Constant for fluent queries to be used to add include statements. Specifies * the path value of "<b>HealthcareService:organization</b>". */ public static final ca.uhn.fhir.model.api.Include INCLUDE_ORGANIZATION = new ca.uhn.fhir.model.api.Include("HealthcareService:organization").toLocked(); /** * Search parameter: <b>servicetype</b> * <p> * Description: <b>The type of service provided by this healthcare service</b><br> * Type: <b>token</b><br> * Path: <b>HealthcareService.serviceType</b><br> * </p> */ @SearchParamDefinition(name="servicetype", path="HealthcareService.serviceType", description="The type of service provided by this healthcare service", type="token" ) public static final String SP_SERVICETYPE = "servicetype"; /** * <b>Fluent Client</b> search parameter constant for <b>servicetype</b> * <p> * Description: <b>The type of service provided by this healthcare service</b><br> * Type: <b>token</b><br> * Path: <b>HealthcareService.serviceType</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.TokenClientParam SERVICETYPE = new ca.uhn.fhir.rest.gclient.TokenClientParam(SP_SERVICETYPE); /** * Search parameter: <b>location</b> * <p> * Description: <b>The location of the Healthcare Service</b><br> * Type: <b>reference</b><br> * Path: <b>HealthcareService.location</b><br> * </p> */ @SearchParamDefinition(name="location", path="HealthcareService.location", description="The location of the Healthcare Service", type="reference" ) public static final String SP_LOCATION = "location"; /** * <b>Fluent Client</b> search parameter constant for <b>location</b> * <p> * Description: <b>The location of the Healthcare Service</b><br> * Type: <b>reference</b><br> * Path: <b>HealthcareService.location</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.ReferenceClientParam LOCATION = new ca.uhn.fhir.rest.gclient.ReferenceClientParam(SP_LOCATION); /** * Constant for fluent queries to be used to add include statements. Specifies * the path value of "<b>HealthcareService:location</b>". */ public static final ca.uhn.fhir.model.api.Include INCLUDE_LOCATION = new ca.uhn.fhir.model.api.Include("HealthcareService:location").toLocked(); /** * Search parameter: <b>name</b> * <p> * Description: <b>A portion of the Healthcare service name</b><br> * Type: <b>string</b><br> * Path: <b>HealthcareService.serviceName</b><br> * </p> */ @SearchParamDefinition(name="name", path="HealthcareService.serviceName", description="A portion of the Healthcare service name", type="string" ) public static final String SP_NAME = "name"; /** * <b>Fluent Client</b> search parameter constant for <b>name</b> * <p> * Description: <b>A portion of the Healthcare service name</b><br> * Type: <b>string</b><br> * Path: <b>HealthcareService.serviceName</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.StringClientParam NAME = new ca.uhn.fhir.rest.gclient.StringClientParam(SP_NAME); /** * Search parameter: <b>programname</b> * <p> * Description: <b>One of the Program Names serviced by this HealthcareService</b><br> * Type: <b>string</b><br> * Path: <b>HealthcareService.programName</b><br> * </p> */ @SearchParamDefinition(name="programname", path="HealthcareService.programName", description="One of the Program Names serviced by this HealthcareService", type="string" ) public static final String SP_PROGRAMNAME = "programname"; /** * <b>Fluent Client</b> search parameter constant for <b>programname</b> * <p> * Description: <b>One of the Program Names serviced by this HealthcareService</b><br> * Type: <b>string</b><br> * Path: <b>HealthcareService.programName</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.StringClientParam PROGRAMNAME = new ca.uhn.fhir.rest.gclient.StringClientParam(SP_PROGRAMNAME); /** * Search parameter: <b>characteristic</b> * <p> * Description: <b>One of the HealthcareService's characteristics</b><br> * Type: <b>token</b><br> * Path: <b>HealthcareService.characteristic</b><br> * </p> */ @SearchParamDefinition(name="characteristic", path="HealthcareService.characteristic", description="One of the HealthcareService's characteristics", type="token" ) public static final String SP_CHARACTERISTIC = "characteristic"; /** * <b>Fluent Client</b> search parameter constant for <b>characteristic</b> * <p> * Description: <b>One of the HealthcareService's characteristics</b><br> * Type: <b>token</b><br> * Path: <b>HealthcareService.characteristic</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.TokenClientParam CHARACTERISTIC = new ca.uhn.fhir.rest.gclient.TokenClientParam(SP_CHARACTERISTIC); /** * Search parameter: <b>identifier</b> * <p> * Description: <b>External identifiers for this item</b><br> * Type: <b>token</b><br> * Path: <b>HealthcareService.identifier</b><br> * </p> */ @SearchParamDefinition(name="identifier", path="HealthcareService.identifier", description="External identifiers for this item", type="token" ) public static final String SP_IDENTIFIER = "identifier"; /** * <b>Fluent Client</b> search parameter constant for <b>identifier</b> * <p> * Description: <b>External identifiers for this item</b><br> * Type: <b>token</b><br> * Path: <b>HealthcareService.identifier</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.TokenClientParam IDENTIFIER = new ca.uhn.fhir.rest.gclient.TokenClientParam(SP_IDENTIFIER); }