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.Date; 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; /** * This resource is primarily used for the identification and definition of a medication. It covers the ingredients and the packaging for a medication. */ @ResourceDef(name="Medication", profile="http://hl7.org/fhir/Profile/Medication") public class Medication extends DomainResource { @Block() public static class MedicationProductComponent extends BackboneElement implements IBaseBackboneElement { /** * Describes the form of the item. Powder; tablets; carton. */ @Child(name = "form", type = {CodeableConcept.class}, order=1, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="powder | tablets | carton +", formalDefinition="Describes the form of the item. Powder; tablets; carton." ) protected CodeableConcept form; /** * Identifies a particular constituent of interest in the product. */ @Child(name = "ingredient", type = {}, order=2, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false) @Description(shortDefinition="Active or inactive ingredient", formalDefinition="Identifies a particular constituent of interest in the product." ) protected List<MedicationProductIngredientComponent> ingredient; /** * Information about a group of medication produced or packaged from one production run. */ @Child(name = "batch", type = {}, order=3, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false) @Description(shortDefinition="", formalDefinition="Information about a group of medication produced or packaged from one production run." ) protected List<MedicationProductBatchComponent> batch; private static final long serialVersionUID = 1132853671L; /** * Constructor */ public MedicationProductComponent() { super(); } /** * @return {@link #form} (Describes the form of the item. Powder; tablets; carton.) */ public CodeableConcept getForm() { if (this.form == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationProductComponent.form"); else if (Configuration.doAutoCreate()) this.form = new CodeableConcept(); // cc return this.form; } public boolean hasForm() { return this.form != null && !this.form.isEmpty(); } /** * @param value {@link #form} (Describes the form of the item. Powder; tablets; carton.) */ public MedicationProductComponent setForm(CodeableConcept value) { this.form = value; return this; } /** * @return {@link #ingredient} (Identifies a particular constituent of interest in the product.) */ public List<MedicationProductIngredientComponent> getIngredient() { if (this.ingredient == null) this.ingredient = new ArrayList<MedicationProductIngredientComponent>(); return this.ingredient; } public boolean hasIngredient() { if (this.ingredient == null) return false; for (MedicationProductIngredientComponent item : this.ingredient) if (!item.isEmpty()) return true; return false; } /** * @return {@link #ingredient} (Identifies a particular constituent of interest in the product.) */ // syntactic sugar public MedicationProductIngredientComponent addIngredient() { //3 MedicationProductIngredientComponent t = new MedicationProductIngredientComponent(); if (this.ingredient == null) this.ingredient = new ArrayList<MedicationProductIngredientComponent>(); this.ingredient.add(t); return t; } // syntactic sugar public MedicationProductComponent addIngredient(MedicationProductIngredientComponent t) { //3 if (t == null) return this; if (this.ingredient == null) this.ingredient = new ArrayList<MedicationProductIngredientComponent>(); this.ingredient.add(t); return this; } /** * @return {@link #batch} (Information about a group of medication produced or packaged from one production run.) */ public List<MedicationProductBatchComponent> getBatch() { if (this.batch == null) this.batch = new ArrayList<MedicationProductBatchComponent>(); return this.batch; } public boolean hasBatch() { if (this.batch == null) return false; for (MedicationProductBatchComponent item : this.batch) if (!item.isEmpty()) return true; return false; } /** * @return {@link #batch} (Information about a group of medication produced or packaged from one production run.) */ // syntactic sugar public MedicationProductBatchComponent addBatch() { //3 MedicationProductBatchComponent t = new MedicationProductBatchComponent(); if (this.batch == null) this.batch = new ArrayList<MedicationProductBatchComponent>(); this.batch.add(t); return t; } // syntactic sugar public MedicationProductComponent addBatch(MedicationProductBatchComponent t) { //3 if (t == null) return this; if (this.batch == null) this.batch = new ArrayList<MedicationProductBatchComponent>(); this.batch.add(t); return this; } protected void listChildren(List<Property> childrenList) { super.listChildren(childrenList); childrenList.add(new Property("form", "CodeableConcept", "Describes the form of the item. Powder; tablets; carton.", 0, java.lang.Integer.MAX_VALUE, form)); childrenList.add(new Property("ingredient", "", "Identifies a particular constituent of interest in the product.", 0, java.lang.Integer.MAX_VALUE, ingredient)); childrenList.add(new Property("batch", "", "Information about a group of medication produced or packaged from one production run.", 0, java.lang.Integer.MAX_VALUE, batch)); } @Override public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException { switch (hash) { case 3148996: /*form*/ return this.form == null ? new Base[0] : new Base[] {this.form}; // CodeableConcept case -206409263: /*ingredient*/ return this.ingredient == null ? new Base[0] : this.ingredient.toArray(new Base[this.ingredient.size()]); // MedicationProductIngredientComponent case 93509434: /*batch*/ return this.batch == null ? new Base[0] : this.batch.toArray(new Base[this.batch.size()]); // MedicationProductBatchComponent default: return super.getProperty(hash, name, checkValid); } } @Override public void setProperty(int hash, String name, Base value) throws FHIRException { switch (hash) { case 3148996: // form this.form = castToCodeableConcept(value); // CodeableConcept break; case -206409263: // ingredient this.getIngredient().add((MedicationProductIngredientComponent) value); // MedicationProductIngredientComponent break; case 93509434: // batch this.getBatch().add((MedicationProductBatchComponent) value); // MedicationProductBatchComponent break; default: super.setProperty(hash, name, value); } } @Override public void setProperty(String name, Base value) throws FHIRException { if (name.equals("form")) this.form = castToCodeableConcept(value); // CodeableConcept else if (name.equals("ingredient")) this.getIngredient().add((MedicationProductIngredientComponent) value); else if (name.equals("batch")) this.getBatch().add((MedicationProductBatchComponent) value); else super.setProperty(name, value); } @Override public Base makeProperty(int hash, String name) throws FHIRException { switch (hash) { case 3148996: return getForm(); // CodeableConcept case -206409263: return addIngredient(); // MedicationProductIngredientComponent case 93509434: return addBatch(); // MedicationProductBatchComponent default: return super.makeProperty(hash, name); } } @Override public Base addChild(String name) throws FHIRException { if (name.equals("form")) { this.form = new CodeableConcept(); return this.form; } else if (name.equals("ingredient")) { return addIngredient(); } else if (name.equals("batch")) { return addBatch(); } else return super.addChild(name); } public MedicationProductComponent copy() { MedicationProductComponent dst = new MedicationProductComponent(); copyValues(dst); dst.form = form == null ? null : form.copy(); if (ingredient != null) { dst.ingredient = new ArrayList<MedicationProductIngredientComponent>(); for (MedicationProductIngredientComponent i : ingredient) dst.ingredient.add(i.copy()); }; if (batch != null) { dst.batch = new ArrayList<MedicationProductBatchComponent>(); for (MedicationProductBatchComponent i : batch) dst.batch.add(i.copy()); }; return dst; } @Override public boolean equalsDeep(Base other) { if (!super.equalsDeep(other)) return false; if (!(other instanceof MedicationProductComponent)) return false; MedicationProductComponent o = (MedicationProductComponent) other; return compareDeep(form, o.form, true) && compareDeep(ingredient, o.ingredient, true) && compareDeep(batch, o.batch, true) ; } @Override public boolean equalsShallow(Base other) { if (!super.equalsShallow(other)) return false; if (!(other instanceof MedicationProductComponent)) return false; MedicationProductComponent o = (MedicationProductComponent) other; return true; } public boolean isEmpty() { return super.isEmpty() && (form == null || form.isEmpty()) && (ingredient == null || ingredient.isEmpty()) && (batch == null || batch.isEmpty()); } public String fhirType() { return "Medication.product"; } } @Block() public static class MedicationProductIngredientComponent extends BackboneElement implements IBaseBackboneElement { /** * The actual ingredient - either a substance (simple ingredient) or another medication. */ @Child(name = "item", type = {CodeableConcept.class, Substance.class, Medication.class}, order=1, min=1, max=1, modifier=false, summary=false) @Description(shortDefinition="The product contained", formalDefinition="The actual ingredient - either a substance (simple ingredient) or another medication." ) protected Type item; /** * Specifies how many (or how much) of the items there are in this Medication. For example, 250 mg per tablet. */ @Child(name = "amount", type = {Ratio.class}, order=2, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Quantity of ingredient present", formalDefinition="Specifies how many (or how much) of the items there are in this Medication. For example, 250 mg per tablet." ) protected Ratio amount; private static final long serialVersionUID = -651644952L; /** * Constructor */ public MedicationProductIngredientComponent() { super(); } /** * Constructor */ public MedicationProductIngredientComponent(Type item) { super(); this.item = item; } /** * @return {@link #item} (The actual ingredient - either a substance (simple ingredient) or another medication.) */ public Type getItem() { return this.item; } /** * @return {@link #item} (The actual ingredient - either a substance (simple ingredient) or another medication.) */ public CodeableConcept getItemCodeableConcept() throws FHIRException { if (!(this.item instanceof CodeableConcept)) throw new FHIRException("Type mismatch: the type CodeableConcept was expected, but "+this.item.getClass().getName()+" was encountered"); return (CodeableConcept) this.item; } public boolean hasItemCodeableConcept() { return this.item instanceof CodeableConcept; } /** * @return {@link #item} (The actual ingredient - either a substance (simple ingredient) or another medication.) */ public Reference getItemReference() throws FHIRException { if (!(this.item instanceof Reference)) throw new FHIRException("Type mismatch: the type Reference was expected, but "+this.item.getClass().getName()+" was encountered"); return (Reference) this.item; } public boolean hasItemReference() { return this.item instanceof Reference; } public boolean hasItem() { return this.item != null && !this.item.isEmpty(); } /** * @param value {@link #item} (The actual ingredient - either a substance (simple ingredient) or another medication.) */ public MedicationProductIngredientComponent setItem(Type value) { this.item = value; return this; } /** * @return {@link #amount} (Specifies how many (or how much) of the items there are in this Medication. For example, 250 mg per tablet.) */ public Ratio getAmount() { if (this.amount == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationProductIngredientComponent.amount"); else if (Configuration.doAutoCreate()) this.amount = new Ratio(); // cc return this.amount; } public boolean hasAmount() { return this.amount != null && !this.amount.isEmpty(); } /** * @param value {@link #amount} (Specifies how many (or how much) of the items there are in this Medication. For example, 250 mg per tablet.) */ public MedicationProductIngredientComponent setAmount(Ratio value) { this.amount = value; return this; } protected void listChildren(List<Property> childrenList) { super.listChildren(childrenList); childrenList.add(new Property("item[x]", "CodeableConcept|Reference(Substance|Medication)", "The actual ingredient - either a substance (simple ingredient) or another medication.", 0, java.lang.Integer.MAX_VALUE, item)); childrenList.add(new Property("amount", "Ratio", "Specifies how many (or how much) of the items there are in this Medication. For example, 250 mg per tablet.", 0, java.lang.Integer.MAX_VALUE, amount)); } @Override public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException { switch (hash) { case 3242771: /*item*/ return this.item == null ? new Base[0] : new Base[] {this.item}; // Type case -1413853096: /*amount*/ return this.amount == null ? new Base[0] : new Base[] {this.amount}; // Ratio default: return super.getProperty(hash, name, checkValid); } } @Override public void setProperty(int hash, String name, Base value) throws FHIRException { switch (hash) { case 3242771: // item this.item = (Type) value; // Type break; case -1413853096: // amount this.amount = castToRatio(value); // Ratio break; default: super.setProperty(hash, name, value); } } @Override public void setProperty(String name, Base value) throws FHIRException { if (name.equals("item[x]")) this.item = (Type) value; // Type else if (name.equals("amount")) this.amount = castToRatio(value); // Ratio else super.setProperty(name, value); } @Override public Base makeProperty(int hash, String name) throws FHIRException { switch (hash) { case 2116201613: return getItem(); // Type case -1413853096: return getAmount(); // Ratio default: return super.makeProperty(hash, name); } } @Override public Base addChild(String name) throws FHIRException { if (name.equals("itemCodeableConcept")) { this.item = new CodeableConcept(); return this.item; } else if (name.equals("itemReference")) { this.item = new Reference(); return this.item; } else if (name.equals("amount")) { this.amount = new Ratio(); return this.amount; } else return super.addChild(name); } public MedicationProductIngredientComponent copy() { MedicationProductIngredientComponent dst = new MedicationProductIngredientComponent(); copyValues(dst); dst.item = item == null ? null : item.copy(); dst.amount = amount == null ? null : amount.copy(); return dst; } @Override public boolean equalsDeep(Base other) { if (!super.equalsDeep(other)) return false; if (!(other instanceof MedicationProductIngredientComponent)) return false; MedicationProductIngredientComponent o = (MedicationProductIngredientComponent) other; return compareDeep(item, o.item, true) && compareDeep(amount, o.amount, true); } @Override public boolean equalsShallow(Base other) { if (!super.equalsShallow(other)) return false; if (!(other instanceof MedicationProductIngredientComponent)) return false; MedicationProductIngredientComponent o = (MedicationProductIngredientComponent) other; return true; } public boolean isEmpty() { return super.isEmpty() && (item == null || item.isEmpty()) && (amount == null || amount.isEmpty()) ; } public String fhirType() { return "Medication.product.ingredient"; } } @Block() public static class MedicationProductBatchComponent extends BackboneElement implements IBaseBackboneElement { /** * The assigned lot number of a batch of the specified product. */ @Child(name = "lotNumber", type = {StringType.class}, order=1, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="", formalDefinition="The assigned lot number of a batch of the specified product." ) protected StringType lotNumber; /** * When this specific batch of product will expire. */ @Child(name = "expirationDate", type = {DateTimeType.class}, order=2, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="", formalDefinition="When this specific batch of product will expire." ) protected DateTimeType expirationDate; private static final long serialVersionUID = 1982738755L; /** * Constructor */ public MedicationProductBatchComponent() { super(); } /** * @return {@link #lotNumber} (The assigned lot number of a batch of the specified product.). This is the underlying object with id, value and extensions. The accessor "getLotNumber" gives direct access to the value */ public StringType getLotNumberElement() { if (this.lotNumber == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationProductBatchComponent.lotNumber"); else if (Configuration.doAutoCreate()) this.lotNumber = new StringType(); // bb return this.lotNumber; } public boolean hasLotNumberElement() { return this.lotNumber != null && !this.lotNumber.isEmpty(); } public boolean hasLotNumber() { return this.lotNumber != null && !this.lotNumber.isEmpty(); } /** * @param value {@link #lotNumber} (The assigned lot number of a batch of the specified product.). This is the underlying object with id, value and extensions. The accessor "getLotNumber" gives direct access to the value */ public MedicationProductBatchComponent setLotNumberElement(StringType value) { this.lotNumber = value; return this; } /** * @return The assigned lot number of a batch of the specified product. */ public String getLotNumber() { return this.lotNumber == null ? null : this.lotNumber.getValue(); } /** * @param value The assigned lot number of a batch of the specified product. */ public MedicationProductBatchComponent setLotNumber(String value) { if (Utilities.noString(value)) this.lotNumber = null; else { if (this.lotNumber == null) this.lotNumber = new StringType(); this.lotNumber.setValue(value); } return this; } /** * @return {@link #expirationDate} (When this specific batch of product will expire.). This is the underlying object with id, value and extensions. The accessor "getExpirationDate" gives direct access to the value */ public DateTimeType getExpirationDateElement() { if (this.expirationDate == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationProductBatchComponent.expirationDate"); else if (Configuration.doAutoCreate()) this.expirationDate = new DateTimeType(); // bb return this.expirationDate; } public boolean hasExpirationDateElement() { return this.expirationDate != null && !this.expirationDate.isEmpty(); } public boolean hasExpirationDate() { return this.expirationDate != null && !this.expirationDate.isEmpty(); } /** * @param value {@link #expirationDate} (When this specific batch of product will expire.). This is the underlying object with id, value and extensions. The accessor "getExpirationDate" gives direct access to the value */ public MedicationProductBatchComponent setExpirationDateElement(DateTimeType value) { this.expirationDate = value; return this; } /** * @return When this specific batch of product will expire. */ public Date getExpirationDate() { return this.expirationDate == null ? null : this.expirationDate.getValue(); } /** * @param value When this specific batch of product will expire. */ public MedicationProductBatchComponent setExpirationDate(Date value) { if (value == null) this.expirationDate = null; else { if (this.expirationDate == null) this.expirationDate = new DateTimeType(); this.expirationDate.setValue(value); } return this; } protected void listChildren(List<Property> childrenList) { super.listChildren(childrenList); childrenList.add(new Property("lotNumber", "string", "The assigned lot number of a batch of the specified product.", 0, java.lang.Integer.MAX_VALUE, lotNumber)); childrenList.add(new Property("expirationDate", "dateTime", "When this specific batch of product will expire.", 0, java.lang.Integer.MAX_VALUE, expirationDate)); } @Override public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException { switch (hash) { case 462547450: /*lotNumber*/ return this.lotNumber == null ? new Base[0] : new Base[] {this.lotNumber}; // StringType case -668811523: /*expirationDate*/ return this.expirationDate == null ? new Base[0] : new Base[] {this.expirationDate}; // DateTimeType default: return super.getProperty(hash, name, checkValid); } } @Override public void setProperty(int hash, String name, Base value) throws FHIRException { switch (hash) { case 462547450: // lotNumber this.lotNumber = castToString(value); // StringType break; case -668811523: // expirationDate this.expirationDate = castToDateTime(value); // DateTimeType break; default: super.setProperty(hash, name, value); } } @Override public void setProperty(String name, Base value) throws FHIRException { if (name.equals("lotNumber")) this.lotNumber = castToString(value); // StringType else if (name.equals("expirationDate")) this.expirationDate = castToDateTime(value); // DateTimeType else super.setProperty(name, value); } @Override public Base makeProperty(int hash, String name) throws FHIRException { switch (hash) { case 462547450: throw new FHIRException("Cannot make property lotNumber as it is not a complex type"); // StringType case -668811523: throw new FHIRException("Cannot make property expirationDate as it is not a complex type"); // DateTimeType default: return super.makeProperty(hash, name); } } @Override public Base addChild(String name) throws FHIRException { if (name.equals("lotNumber")) { throw new FHIRException("Cannot call addChild on a primitive type Medication.lotNumber"); } else if (name.equals("expirationDate")) { throw new FHIRException("Cannot call addChild on a primitive type Medication.expirationDate"); } else return super.addChild(name); } public MedicationProductBatchComponent copy() { MedicationProductBatchComponent dst = new MedicationProductBatchComponent(); copyValues(dst); dst.lotNumber = lotNumber == null ? null : lotNumber.copy(); dst.expirationDate = expirationDate == null ? null : expirationDate.copy(); return dst; } @Override public boolean equalsDeep(Base other) { if (!super.equalsDeep(other)) return false; if (!(other instanceof MedicationProductBatchComponent)) return false; MedicationProductBatchComponent o = (MedicationProductBatchComponent) other; return compareDeep(lotNumber, o.lotNumber, true) && compareDeep(expirationDate, o.expirationDate, true) ; } @Override public boolean equalsShallow(Base other) { if (!super.equalsShallow(other)) return false; if (!(other instanceof MedicationProductBatchComponent)) return false; MedicationProductBatchComponent o = (MedicationProductBatchComponent) other; return compareValues(lotNumber, o.lotNumber, true) && compareValues(expirationDate, o.expirationDate, true) ; } public boolean isEmpty() { return super.isEmpty() && (lotNumber == null || lotNumber.isEmpty()) && (expirationDate == null || expirationDate.isEmpty()) ; } public String fhirType() { return "Medication.product.batch"; } } @Block() public static class MedicationPackageComponent extends BackboneElement implements IBaseBackboneElement { /** * The kind of container that this package comes as. */ @Child(name = "container", type = {CodeableConcept.class}, order=1, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="E.g. box, vial, blister-pack", formalDefinition="The kind of container that this package comes as." ) protected CodeableConcept container; /** * A set of components that go to make up the described item. */ @Child(name = "content", type = {}, order=2, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false) @Description(shortDefinition="What is in the package", formalDefinition="A set of components that go to make up the described item." ) protected List<MedicationPackageContentComponent> content; private static final long serialVersionUID = 503772472L; /** * Constructor */ public MedicationPackageComponent() { super(); } /** * @return {@link #container} (The kind of container that this package comes as.) */ public CodeableConcept getContainer() { if (this.container == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationPackageComponent.container"); else if (Configuration.doAutoCreate()) this.container = new CodeableConcept(); // cc return this.container; } public boolean hasContainer() { return this.container != null && !this.container.isEmpty(); } /** * @param value {@link #container} (The kind of container that this package comes as.) */ public MedicationPackageComponent setContainer(CodeableConcept value) { this.container = value; return this; } /** * @return {@link #content} (A set of components that go to make up the described item.) */ public List<MedicationPackageContentComponent> getContent() { if (this.content == null) this.content = new ArrayList<MedicationPackageContentComponent>(); return this.content; } public boolean hasContent() { if (this.content == null) return false; for (MedicationPackageContentComponent item : this.content) if (!item.isEmpty()) return true; return false; } /** * @return {@link #content} (A set of components that go to make up the described item.) */ // syntactic sugar public MedicationPackageContentComponent addContent() { //3 MedicationPackageContentComponent t = new MedicationPackageContentComponent(); if (this.content == null) this.content = new ArrayList<MedicationPackageContentComponent>(); this.content.add(t); return t; } // syntactic sugar public MedicationPackageComponent addContent(MedicationPackageContentComponent t) { //3 if (t == null) return this; if (this.content == null) this.content = new ArrayList<MedicationPackageContentComponent>(); this.content.add(t); return this; } protected void listChildren(List<Property> childrenList) { super.listChildren(childrenList); childrenList.add(new Property("container", "CodeableConcept", "The kind of container that this package comes as.", 0, java.lang.Integer.MAX_VALUE, container)); childrenList.add(new Property("content", "", "A set of components that go to make up the described item.", 0, java.lang.Integer.MAX_VALUE, content)); } @Override public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException { switch (hash) { case -410956671: /*container*/ return this.container == null ? new Base[0] : new Base[] {this.container}; // CodeableConcept case 951530617: /*content*/ return this.content == null ? new Base[0] : this.content.toArray(new Base[this.content.size()]); // MedicationPackageContentComponent default: return super.getProperty(hash, name, checkValid); } } @Override public void setProperty(int hash, String name, Base value) throws FHIRException { switch (hash) { case -410956671: // container this.container = castToCodeableConcept(value); // CodeableConcept break; case 951530617: // content this.getContent().add((MedicationPackageContentComponent) value); // MedicationPackageContentComponent break; default: super.setProperty(hash, name, value); } } @Override public void setProperty(String name, Base value) throws FHIRException { if (name.equals("container")) this.container = castToCodeableConcept(value); // CodeableConcept else if (name.equals("content")) this.getContent().add((MedicationPackageContentComponent) value); else super.setProperty(name, value); } @Override public Base makeProperty(int hash, String name) throws FHIRException { switch (hash) { case -410956671: return getContainer(); // CodeableConcept case 951530617: return addContent(); // MedicationPackageContentComponent default: return super.makeProperty(hash, name); } } @Override public Base addChild(String name) throws FHIRException { if (name.equals("container")) { this.container = new CodeableConcept(); return this.container; } else if (name.equals("content")) { return addContent(); } else return super.addChild(name); } public MedicationPackageComponent copy() { MedicationPackageComponent dst = new MedicationPackageComponent(); copyValues(dst); dst.container = container == null ? null : container.copy(); if (content != null) { dst.content = new ArrayList<MedicationPackageContentComponent>(); for (MedicationPackageContentComponent i : content) dst.content.add(i.copy()); }; return dst; } @Override public boolean equalsDeep(Base other) { if (!super.equalsDeep(other)) return false; if (!(other instanceof MedicationPackageComponent)) return false; MedicationPackageComponent o = (MedicationPackageComponent) other; return compareDeep(container, o.container, true) && compareDeep(content, o.content, true); } @Override public boolean equalsShallow(Base other) { if (!super.equalsShallow(other)) return false; if (!(other instanceof MedicationPackageComponent)) return false; MedicationPackageComponent o = (MedicationPackageComponent) other; return true; } public boolean isEmpty() { return super.isEmpty() && (container == null || container.isEmpty()) && (content == null || content.isEmpty()) ; } public String fhirType() { return "Medication.package"; } } @Block() public static class MedicationPackageContentComponent extends BackboneElement implements IBaseBackboneElement { /** * Identifies one of the items in the package. */ @Child(name = "item", type = {CodeableConcept.class, Medication.class}, order=1, min=1, max=1, modifier=false, summary=false) @Description(shortDefinition="The item in the package", formalDefinition="Identifies one of the items in the package." ) protected Type item; /** * The amount of the product that is in the package. */ @Child(name = "amount", type = {SimpleQuantity.class}, order=2, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Quantity present in the package", formalDefinition="The amount of the product that is in the package." ) protected SimpleQuantity amount; private static final long serialVersionUID = 1669610080L; /** * Constructor */ public MedicationPackageContentComponent() { super(); } /** * Constructor */ public MedicationPackageContentComponent(Type item) { super(); this.item = item; } /** * @return {@link #item} (Identifies one of the items in the package.) */ public Type getItem() { return this.item; } /** * @return {@link #item} (Identifies one of the items in the package.) */ public CodeableConcept getItemCodeableConcept() throws FHIRException { if (!(this.item instanceof CodeableConcept)) throw new FHIRException("Type mismatch: the type CodeableConcept was expected, but "+this.item.getClass().getName()+" was encountered"); return (CodeableConcept) this.item; } public boolean hasItemCodeableConcept() { return this.item instanceof CodeableConcept; } /** * @return {@link #item} (Identifies one of the items in the package.) */ public Reference getItemReference() throws FHIRException { if (!(this.item instanceof Reference)) throw new FHIRException("Type mismatch: the type Reference was expected, but "+this.item.getClass().getName()+" was encountered"); return (Reference) this.item; } public boolean hasItemReference() { return this.item instanceof Reference; } public boolean hasItem() { return this.item != null && !this.item.isEmpty(); } /** * @param value {@link #item} (Identifies one of the items in the package.) */ public MedicationPackageContentComponent setItem(Type value) { this.item = value; return this; } /** * @return {@link #amount} (The amount of the product that is in the package.) */ public SimpleQuantity getAmount() { if (this.amount == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationPackageContentComponent.amount"); else if (Configuration.doAutoCreate()) this.amount = new SimpleQuantity(); // cc return this.amount; } public boolean hasAmount() { return this.amount != null && !this.amount.isEmpty(); } /** * @param value {@link #amount} (The amount of the product that is in the package.) */ public MedicationPackageContentComponent setAmount(SimpleQuantity value) { this.amount = value; return this; } protected void listChildren(List<Property> childrenList) { super.listChildren(childrenList); childrenList.add(new Property("item[x]", "CodeableConcept|Reference(Medication)", "Identifies one of the items in the package.", 0, java.lang.Integer.MAX_VALUE, item)); childrenList.add(new Property("amount", "SimpleQuantity", "The amount of the product that is in the package.", 0, java.lang.Integer.MAX_VALUE, amount)); } @Override public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException { switch (hash) { case 3242771: /*item*/ return this.item == null ? new Base[0] : new Base[] {this.item}; // Type case -1413853096: /*amount*/ return this.amount == null ? new Base[0] : new Base[] {this.amount}; // SimpleQuantity default: return super.getProperty(hash, name, checkValid); } } @Override public void setProperty(int hash, String name, Base value) throws FHIRException { switch (hash) { case 3242771: // item this.item = (Type) value; // Type break; case -1413853096: // amount this.amount = castToSimpleQuantity(value); // SimpleQuantity break; default: super.setProperty(hash, name, value); } } @Override public void setProperty(String name, Base value) throws FHIRException { if (name.equals("item[x]")) this.item = (Type) value; // Type else if (name.equals("amount")) this.amount = castToSimpleQuantity(value); // SimpleQuantity else super.setProperty(name, value); } @Override public Base makeProperty(int hash, String name) throws FHIRException { switch (hash) { case 2116201613: return getItem(); // Type case -1413853096: return getAmount(); // SimpleQuantity default: return super.makeProperty(hash, name); } } @Override public Base addChild(String name) throws FHIRException { if (name.equals("itemCodeableConcept")) { this.item = new CodeableConcept(); return this.item; } else if (name.equals("itemReference")) { this.item = new Reference(); return this.item; } else if (name.equals("amount")) { this.amount = new SimpleQuantity(); return this.amount; } else return super.addChild(name); } public MedicationPackageContentComponent copy() { MedicationPackageContentComponent dst = new MedicationPackageContentComponent(); copyValues(dst); dst.item = item == null ? null : item.copy(); dst.amount = amount == null ? null : amount.copy(); return dst; } @Override public boolean equalsDeep(Base other) { if (!super.equalsDeep(other)) return false; if (!(other instanceof MedicationPackageContentComponent)) return false; MedicationPackageContentComponent o = (MedicationPackageContentComponent) other; return compareDeep(item, o.item, true) && compareDeep(amount, o.amount, true); } @Override public boolean equalsShallow(Base other) { if (!super.equalsShallow(other)) return false; if (!(other instanceof MedicationPackageContentComponent)) return false; MedicationPackageContentComponent o = (MedicationPackageContentComponent) other; return true; } public boolean isEmpty() { return super.isEmpty() && (item == null || item.isEmpty()) && (amount == null || amount.isEmpty()) ; } public String fhirType() { return "Medication.package.content"; } } /** * A code (or set of codes) that specify this medication, or a textual description if no code is available. Usage note: This could be a standard medication code such as a code from RxNorm, SNOMED CT, IDMP etc. It could also be a national or local formulary code, optionally with translations to other code systems. */ @Child(name = "code", type = {CodeableConcept.class}, order=0, min=0, max=1, modifier=false, summary=true) @Description(shortDefinition="Codes that identify this medication", formalDefinition="A code (or set of codes) that specify this medication, or a textual description if no code is available. Usage note: This could be a standard medication code such as a code from RxNorm, SNOMED CT, IDMP etc. It could also be a national or local formulary code, optionally with translations to other code systems." ) protected CodeableConcept code; /** * Set to true if the item is attributable to a specific manufacturer. */ @Child(name = "isBrand", type = {BooleanType.class}, order=1, min=0, max=1, modifier=false, summary=true) @Description(shortDefinition="True if a brand", formalDefinition="Set to true if the item is attributable to a specific manufacturer." ) protected BooleanType isBrand; /** * Describes the details of the manufacturer. */ @Child(name = "manufacturer", type = {Organization.class}, order=2, min=0, max=1, modifier=false, summary=true) @Description(shortDefinition="Manufacturer of the item", formalDefinition="Describes the details of the manufacturer." ) protected Reference manufacturer; /** * The actual object that is the target of the reference (Describes the details of the manufacturer.) */ protected Organization manufacturerTarget; /** * Information that only applies to products (not packages). */ @Child(name = "product", type = {}, order=3, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Administrable medication details", formalDefinition="Information that only applies to products (not packages)." ) protected MedicationProductComponent product; /** * Information that only applies to packages (not products). */ @Child(name = "package", type = {}, order=4, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Details about packaged medications", formalDefinition="Information that only applies to packages (not products)." ) protected MedicationPackageComponent package_; private static final long serialVersionUID = 859308699L; /** * Constructor */ public Medication() { super(); } /** * @return {@link #code} (A code (or set of codes) that specify this medication, or a textual description if no code is available. Usage note: This could be a standard medication code such as a code from RxNorm, SNOMED CT, IDMP etc. It could also be a national or local formulary code, optionally with translations to other code systems.) */ public CodeableConcept getCode() { if (this.code == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create Medication.code"); else if (Configuration.doAutoCreate()) this.code = new CodeableConcept(); // cc return this.code; } public boolean hasCode() { return this.code != null && !this.code.isEmpty(); } /** * @param value {@link #code} (A code (or set of codes) that specify this medication, or a textual description if no code is available. Usage note: This could be a standard medication code such as a code from RxNorm, SNOMED CT, IDMP etc. It could also be a national or local formulary code, optionally with translations to other code systems.) */ public Medication setCode(CodeableConcept value) { this.code = value; return this; } /** * @return {@link #isBrand} (Set to true if the item is attributable to a specific manufacturer.). This is the underlying object with id, value and extensions. The accessor "getIsBrand" gives direct access to the value */ public BooleanType getIsBrandElement() { if (this.isBrand == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create Medication.isBrand"); else if (Configuration.doAutoCreate()) this.isBrand = new BooleanType(); // bb return this.isBrand; } public boolean hasIsBrandElement() { return this.isBrand != null && !this.isBrand.isEmpty(); } public boolean hasIsBrand() { return this.isBrand != null && !this.isBrand.isEmpty(); } /** * @param value {@link #isBrand} (Set to true if the item is attributable to a specific manufacturer.). This is the underlying object with id, value and extensions. The accessor "getIsBrand" gives direct access to the value */ public Medication setIsBrandElement(BooleanType value) { this.isBrand = value; return this; } /** * @return Set to true if the item is attributable to a specific manufacturer. */ public boolean getIsBrand() { return this.isBrand == null || this.isBrand.isEmpty() ? false : this.isBrand.getValue(); } /** * @param value Set to true if the item is attributable to a specific manufacturer. */ public Medication setIsBrand(boolean value) { if (this.isBrand == null) this.isBrand = new BooleanType(); this.isBrand.setValue(value); return this; } /** * @return {@link #manufacturer} (Describes the details of the manufacturer.) */ public Reference getManufacturer() { if (this.manufacturer == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create Medication.manufacturer"); else if (Configuration.doAutoCreate()) this.manufacturer = new Reference(); // cc return this.manufacturer; } public boolean hasManufacturer() { return this.manufacturer != null && !this.manufacturer.isEmpty(); } /** * @param value {@link #manufacturer} (Describes the details of the manufacturer.) */ public Medication setManufacturer(Reference value) { this.manufacturer = value; return this; } /** * @return {@link #manufacturer} 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. (Describes the details of the manufacturer.) */ public Organization getManufacturerTarget() { if (this.manufacturerTarget == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create Medication.manufacturer"); else if (Configuration.doAutoCreate()) this.manufacturerTarget = new Organization(); // aa return this.manufacturerTarget; } /** * @param value {@link #manufacturer} 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. (Describes the details of the manufacturer.) */ public Medication setManufacturerTarget(Organization value) { this.manufacturerTarget = value; return this; } /** * @return {@link #product} (Information that only applies to products (not packages).) */ public MedicationProductComponent getProduct() { if (this.product == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create Medication.product"); else if (Configuration.doAutoCreate()) this.product = new MedicationProductComponent(); // cc return this.product; } public boolean hasProduct() { return this.product != null && !this.product.isEmpty(); } /** * @param value {@link #product} (Information that only applies to products (not packages).) */ public Medication setProduct(MedicationProductComponent value) { this.product = value; return this; } /** * @return {@link #package_} (Information that only applies to packages (not products).) */ public MedicationPackageComponent getPackage() { if (this.package_ == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create Medication.package_"); else if (Configuration.doAutoCreate()) this.package_ = new MedicationPackageComponent(); // cc return this.package_; } public boolean hasPackage() { return this.package_ != null && !this.package_.isEmpty(); } /** * @param value {@link #package_} (Information that only applies to packages (not products).) */ public Medication setPackage(MedicationPackageComponent value) { this.package_ = value; return this; } protected void listChildren(List<Property> childrenList) { super.listChildren(childrenList); childrenList.add(new Property("code", "CodeableConcept", "A code (or set of codes) that specify this medication, or a textual description if no code is available. Usage note: This could be a standard medication code such as a code from RxNorm, SNOMED CT, IDMP etc. It could also be a national or local formulary code, optionally with translations to other code systems.", 0, java.lang.Integer.MAX_VALUE, code)); childrenList.add(new Property("isBrand", "boolean", "Set to true if the item is attributable to a specific manufacturer.", 0, java.lang.Integer.MAX_VALUE, isBrand)); childrenList.add(new Property("manufacturer", "Reference(Organization)", "Describes the details of the manufacturer.", 0, java.lang.Integer.MAX_VALUE, manufacturer)); childrenList.add(new Property("product", "", "Information that only applies to products (not packages).", 0, java.lang.Integer.MAX_VALUE, product)); childrenList.add(new Property("package", "", "Information that only applies to packages (not products).", 0, java.lang.Integer.MAX_VALUE, package_)); } @Override public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException { switch (hash) { case 3059181: /*code*/ return this.code == null ? new Base[0] : new Base[] {this.code}; // CodeableConcept case 2055403645: /*isBrand*/ return this.isBrand == null ? new Base[0] : new Base[] {this.isBrand}; // BooleanType case -1969347631: /*manufacturer*/ return this.manufacturer == null ? new Base[0] : new Base[] {this.manufacturer}; // Reference case -309474065: /*product*/ return this.product == null ? new Base[0] : new Base[] {this.product}; // MedicationProductComponent case -807062458: /*package*/ return this.package_ == null ? new Base[0] : new Base[] {this.package_}; // MedicationPackageComponent default: return super.getProperty(hash, name, checkValid); } } @Override public void setProperty(int hash, String name, Base value) throws FHIRException { switch (hash) { case 3059181: // code this.code = castToCodeableConcept(value); // CodeableConcept break; case 2055403645: // isBrand this.isBrand = castToBoolean(value); // BooleanType break; case -1969347631: // manufacturer this.manufacturer = castToReference(value); // Reference break; case -309474065: // product this.product = (MedicationProductComponent) value; // MedicationProductComponent break; case -807062458: // package this.package_ = (MedicationPackageComponent) value; // MedicationPackageComponent break; default: super.setProperty(hash, name, value); } } @Override public void setProperty(String name, Base value) throws FHIRException { if (name.equals("code")) this.code = castToCodeableConcept(value); // CodeableConcept else if (name.equals("isBrand")) this.isBrand = castToBoolean(value); // BooleanType else if (name.equals("manufacturer")) this.manufacturer = castToReference(value); // Reference else if (name.equals("product")) this.product = (MedicationProductComponent) value; // MedicationProductComponent else if (name.equals("package")) this.package_ = (MedicationPackageComponent) value; // MedicationPackageComponent else super.setProperty(name, value); } @Override public Base makeProperty(int hash, String name) throws FHIRException { switch (hash) { case 3059181: return getCode(); // CodeableConcept case 2055403645: throw new FHIRException("Cannot make property isBrand as it is not a complex type"); // BooleanType case -1969347631: return getManufacturer(); // Reference case -309474065: return getProduct(); // MedicationProductComponent case -807062458: return getPackage(); // MedicationPackageComponent default: return super.makeProperty(hash, name); } } @Override public Base addChild(String name) throws FHIRException { if (name.equals("code")) { this.code = new CodeableConcept(); return this.code; } else if (name.equals("isBrand")) { throw new FHIRException("Cannot call addChild on a primitive type Medication.isBrand"); } else if (name.equals("manufacturer")) { this.manufacturer = new Reference(); return this.manufacturer; } else if (name.equals("product")) { this.product = new MedicationProductComponent(); return this.product; } else if (name.equals("package")) { this.package_ = new MedicationPackageComponent(); return this.package_; } else return super.addChild(name); } public String fhirType() { return "Medication"; } public Medication copy() { Medication dst = new Medication(); copyValues(dst); dst.code = code == null ? null : code.copy(); dst.isBrand = isBrand == null ? null : isBrand.copy(); dst.manufacturer = manufacturer == null ? null : manufacturer.copy(); dst.product = product == null ? null : product.copy(); dst.package_ = package_ == null ? null : package_.copy(); return dst; } protected Medication typedCopy() { return copy(); } @Override public boolean equalsDeep(Base other) { if (!super.equalsDeep(other)) return false; if (!(other instanceof Medication)) return false; Medication o = (Medication) other; return compareDeep(code, o.code, true) && compareDeep(isBrand, o.isBrand, true) && compareDeep(manufacturer, o.manufacturer, true) && compareDeep(product, o.product, true) && compareDeep(package_, o.package_, true); } @Override public boolean equalsShallow(Base other) { if (!super.equalsShallow(other)) return false; if (!(other instanceof Medication)) return false; Medication o = (Medication) other; return compareValues(isBrand, o.isBrand, true); } public boolean isEmpty() { return super.isEmpty() && (code == null || code.isEmpty()) && (isBrand == null || isBrand.isEmpty()) && (manufacturer == null || manufacturer.isEmpty()) && (product == null || product.isEmpty()) && (package_ == null || package_.isEmpty()); } @Override public ResourceType getResourceType() { return ResourceType.Medication; } /** * Search parameter: <b>form</b> * <p> * Description: <b>powder | tablets | carton +</b><br> * Type: <b>token</b><br> * Path: <b>Medication.product.form</b><br> * </p> */ @SearchParamDefinition(name="form", path="Medication.product.form", description="powder | tablets | carton +", type="token" ) public static final String SP_FORM = "form"; /** * <b>Fluent Client</b> search parameter constant for <b>form</b> * <p> * Description: <b>powder | tablets | carton +</b><br> * Type: <b>token</b><br> * Path: <b>Medication.product.form</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.TokenClientParam FORM = new ca.uhn.fhir.rest.gclient.TokenClientParam(SP_FORM); /** * Search parameter: <b>container</b> * <p> * Description: <b>E.g. box, vial, blister-pack</b><br> * Type: <b>token</b><br> * Path: <b>Medication.package.container</b><br> * </p> */ @SearchParamDefinition(name="container", path="Medication.package.container", description="E.g. box, vial, blister-pack", type="token" ) public static final String SP_CONTAINER = "container"; /** * <b>Fluent Client</b> search parameter constant for <b>container</b> * <p> * Description: <b>E.g. box, vial, blister-pack</b><br> * Type: <b>token</b><br> * Path: <b>Medication.package.container</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.TokenClientParam CONTAINER = new ca.uhn.fhir.rest.gclient.TokenClientParam(SP_CONTAINER); /** * Search parameter: <b>manufacturer</b> * <p> * Description: <b>Manufacturer of the item</b><br> * Type: <b>reference</b><br> * Path: <b>Medication.manufacturer</b><br> * </p> */ @SearchParamDefinition(name="manufacturer", path="Medication.manufacturer", description="Manufacturer of the item", type="reference" ) public static final String SP_MANUFACTURER = "manufacturer"; /** * <b>Fluent Client</b> search parameter constant for <b>manufacturer</b> * <p> * Description: <b>Manufacturer of the item</b><br> * Type: <b>reference</b><br> * Path: <b>Medication.manufacturer</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.ReferenceClientParam MANUFACTURER = new ca.uhn.fhir.rest.gclient.ReferenceClientParam(SP_MANUFACTURER); /** * Constant for fluent queries to be used to add include statements. Specifies * the path value of "<b>Medication:manufacturer</b>". */ public static final ca.uhn.fhir.model.api.Include INCLUDE_MANUFACTURER = new ca.uhn.fhir.model.api.Include("Medication:manufacturer").toLocked(); /** * Search parameter: <b>package-item-code</b> * <p> * Description: <b>The item in the package</b><br> * Type: <b>token</b><br> * Path: <b>Medication.package.content.itemCodeableConcept</b><br> * </p> */ @SearchParamDefinition(name="package-item-code", path="Medication.package.content.item.as(CodeableConcept)", description="The item in the package", type="token" ) public static final String SP_PACKAGE_ITEM_CODE = "package-item-code"; /** * <b>Fluent Client</b> search parameter constant for <b>package-item-code</b> * <p> * Description: <b>The item in the package</b><br> * Type: <b>token</b><br> * Path: <b>Medication.package.content.itemCodeableConcept</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.TokenClientParam PACKAGE_ITEM_CODE = new ca.uhn.fhir.rest.gclient.TokenClientParam(SP_PACKAGE_ITEM_CODE); /** * Search parameter: <b>ingredient</b> * <p> * Description: <b>The product contained</b><br> * Type: <b>reference</b><br> * Path: <b>Medication.product.ingredient.itemReference</b><br> * </p> */ @SearchParamDefinition(name="ingredient", path="Medication.product.ingredient.item.as(Reference)", description="The product contained", type="reference" ) public static final String SP_INGREDIENT = "ingredient"; /** * <b>Fluent Client</b> search parameter constant for <b>ingredient</b> * <p> * Description: <b>The product contained</b><br> * Type: <b>reference</b><br> * Path: <b>Medication.product.ingredient.itemReference</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.ReferenceClientParam INGREDIENT = new ca.uhn.fhir.rest.gclient.ReferenceClientParam(SP_INGREDIENT); /** * Constant for fluent queries to be used to add include statements. Specifies * the path value of "<b>Medication:ingredient</b>". */ public static final ca.uhn.fhir.model.api.Include INCLUDE_INGREDIENT = new ca.uhn.fhir.model.api.Include("Medication:ingredient").toLocked(); /** * Search parameter: <b>package-item</b> * <p> * Description: <b>The item in the package</b><br> * Type: <b>reference</b><br> * Path: <b>Medication.package.content.itemReference</b><br> * </p> */ @SearchParamDefinition(name="package-item", path="Medication.package.content.item.as(Reference)", description="The item in the package", type="reference" ) public static final String SP_PACKAGE_ITEM = "package-item"; /** * <b>Fluent Client</b> search parameter constant for <b>package-item</b> * <p> * Description: <b>The item in the package</b><br> * Type: <b>reference</b><br> * Path: <b>Medication.package.content.itemReference</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.ReferenceClientParam PACKAGE_ITEM = new ca.uhn.fhir.rest.gclient.ReferenceClientParam(SP_PACKAGE_ITEM); /** * Constant for fluent queries to be used to add include statements. Specifies * the path value of "<b>Medication:package-item</b>". */ public static final ca.uhn.fhir.model.api.Include INCLUDE_PACKAGE_ITEM = new ca.uhn.fhir.model.api.Include("Medication:package-item").toLocked(); /** * Search parameter: <b>code</b> * <p> * Description: <b>Codes that identify this medication</b><br> * Type: <b>token</b><br> * Path: <b>Medication.code</b><br> * </p> */ @SearchParamDefinition(name="code", path="Medication.code", description="Codes that identify this medication", type="token" ) public static final String SP_CODE = "code"; /** * <b>Fluent Client</b> search parameter constant for <b>code</b> * <p> * Description: <b>Codes that identify this medication</b><br> * Type: <b>token</b><br> * Path: <b>Medication.code</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.TokenClientParam CODE = new ca.uhn.fhir.rest.gclient.TokenClientParam(SP_CODE); /** * Search parameter: <b>ingredient-code</b> * <p> * Description: <b>The product contained</b><br> * Type: <b>token</b><br> * Path: <b>Medication.product.ingredient.itemCodeableConcept</b><br> * </p> */ @SearchParamDefinition(name="ingredient-code", path="Medication.product.ingredient.item.as(CodeableConcept)", description="The product contained", type="token" ) public static final String SP_INGREDIENT_CODE = "ingredient-code"; /** * <b>Fluent Client</b> search parameter constant for <b>ingredient-code</b> * <p> * Description: <b>The product contained</b><br> * Type: <b>token</b><br> * Path: <b>Medication.product.ingredient.itemCodeableConcept</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.TokenClientParam INGREDIENT_CODE = new ca.uhn.fhir.rest.gclient.TokenClientParam(SP_INGREDIENT_CODE); }