All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hl7.fhir.MedicationIngredient Maven / Gradle / Ivy

Go to download

The quick library for the Clinical Quality Language Java reference implementation

There is a newer version: 3.18.0
Show newest version
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2023.12.08 at 08:47:56 AM MST 
//


package org.hl7.fhir;

import java.util.Collection;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlType;
import org.jvnet.jaxb2_commons.lang.Equals2;
import org.jvnet.jaxb2_commons.lang.EqualsStrategy2;
import org.jvnet.jaxb2_commons.lang.HashCode2;
import org.jvnet.jaxb2_commons.lang.HashCodeStrategy2;
import org.jvnet.jaxb2_commons.lang.JAXBEqualsStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBHashCodeStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy;
import org.jvnet.jaxb2_commons.lang.ToString2;
import org.jvnet.jaxb2_commons.lang.ToStringStrategy2;
import org.jvnet.jaxb2_commons.locator.ObjectLocator;
import org.jvnet.jaxb2_commons.locator.util.LocatorUtils;


/**
 * This resource is primarily used for the identification and definition of a medication. It covers the ingredients and the packaging for a medication.
 * 
 * 

Java class for Medication.Ingredient complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="Medication.Ingredient">
 *   <complexContent>
 *     <extension base="{http://hl7.org/fhir}BackboneElement">
 *       <sequence>
 *         <choice>
 *           <element name="itemCodeableConcept" type="{http://hl7.org/fhir}CodeableConcept"/>
 *           <element name="itemReference" type="{http://hl7.org/fhir}Reference"/>
 *         </choice>
 *         <element name="amount" type="{http://hl7.org/fhir}Ratio" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Medication.Ingredient", propOrder = { "itemCodeableConcept", "itemReference", "amount" }) public class MedicationIngredient extends BackboneElement implements Equals2, HashCode2, ToString2 { protected CodeableConcept itemCodeableConcept; protected Reference itemReference; protected Ratio amount; /** * Gets the value of the itemCodeableConcept property. * * @return * possible object is * {@link CodeableConcept } * */ public CodeableConcept getItemCodeableConcept() { return itemCodeableConcept; } /** * Sets the value of the itemCodeableConcept property. * * @param value * allowed object is * {@link CodeableConcept } * */ public void setItemCodeableConcept(CodeableConcept value) { this.itemCodeableConcept = value; } /** * Gets the value of the itemReference property. * * @return * possible object is * {@link Reference } * */ public Reference getItemReference() { return itemReference; } /** * Sets the value of the itemReference property. * * @param value * allowed object is * {@link Reference } * */ public void setItemReference(Reference value) { this.itemReference = value; } /** * Gets the value of the amount property. * * @return * possible object is * {@link Ratio } * */ public Ratio getAmount() { return amount; } /** * Sets the value of the amount property. * * @param value * allowed object is * {@link Ratio } * */ public void setAmount(Ratio value) { this.amount = value; } public MedicationIngredient withItemCodeableConcept(CodeableConcept value) { setItemCodeableConcept(value); return this; } public MedicationIngredient withItemReference(Reference value) { setItemReference(value); return this; } public MedicationIngredient withAmount(Ratio value) { setAmount(value); return this; } @Override public MedicationIngredient withModifierExtension(Extension... values) { if (values!= null) { for (Extension value: values) { getModifierExtension().add(value); } } return this; } @Override public MedicationIngredient withModifierExtension(Collection values) { if (values!= null) { getModifierExtension().addAll(values); } return this; } @Override public MedicationIngredient withExtension(Extension... values) { if (values!= null) { for (Extension value: values) { getExtension().add(value); } } return this; } @Override public MedicationIngredient withExtension(Collection values) { if (values!= null) { getExtension().addAll(values); } return this; } @Override public MedicationIngredient withId(java.lang.String value) { setId(value); return this; } @Override public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy2 strategy) { if ((object == null)||(this.getClass()!= object.getClass())) { return false; } if (this == object) { return true; } if (!super.equals(thisLocator, thatLocator, object, strategy)) { return false; } final MedicationIngredient that = ((MedicationIngredient) object); { CodeableConcept lhsItemCodeableConcept; lhsItemCodeableConcept = this.getItemCodeableConcept(); CodeableConcept rhsItemCodeableConcept; rhsItemCodeableConcept = that.getItemCodeableConcept(); if (!strategy.equals(LocatorUtils.property(thisLocator, "itemCodeableConcept", lhsItemCodeableConcept), LocatorUtils.property(thatLocator, "itemCodeableConcept", rhsItemCodeableConcept), lhsItemCodeableConcept, rhsItemCodeableConcept, (this.itemCodeableConcept!= null), (that.itemCodeableConcept!= null))) { return false; } } { Reference lhsItemReference; lhsItemReference = this.getItemReference(); Reference rhsItemReference; rhsItemReference = that.getItemReference(); if (!strategy.equals(LocatorUtils.property(thisLocator, "itemReference", lhsItemReference), LocatorUtils.property(thatLocator, "itemReference", rhsItemReference), lhsItemReference, rhsItemReference, (this.itemReference!= null), (that.itemReference!= null))) { return false; } } { Ratio lhsAmount; lhsAmount = this.getAmount(); Ratio rhsAmount; rhsAmount = that.getAmount(); if (!strategy.equals(LocatorUtils.property(thisLocator, "amount", lhsAmount), LocatorUtils.property(thatLocator, "amount", rhsAmount), lhsAmount, rhsAmount, (this.amount!= null), (that.amount!= null))) { return false; } } return true; } @Override public boolean equals(Object object) { final EqualsStrategy2 strategy = JAXBEqualsStrategy.getInstance(); return equals(null, null, object, strategy); } @Override public int hashCode(ObjectLocator locator, HashCodeStrategy2 strategy) { int currentHashCode = super.hashCode(locator, strategy); { CodeableConcept theItemCodeableConcept; theItemCodeableConcept = this.getItemCodeableConcept(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "itemCodeableConcept", theItemCodeableConcept), currentHashCode, theItemCodeableConcept, (this.itemCodeableConcept!= null)); } { Reference theItemReference; theItemReference = this.getItemReference(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "itemReference", theItemReference), currentHashCode, theItemReference, (this.itemReference!= null)); } { Ratio theAmount; theAmount = this.getAmount(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "amount", theAmount), currentHashCode, theAmount, (this.amount!= null)); } return currentHashCode; } @Override public int hashCode() { final HashCodeStrategy2 strategy = JAXBHashCodeStrategy.getInstance(); return this.hashCode(null, strategy); } @Override public java.lang.String toString() { final ToStringStrategy2 strategy = JAXBToStringStrategy.getInstance(); final StringBuilder buffer = new StringBuilder(); append(null, buffer, strategy); return buffer.toString(); } @Override public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) { strategy.appendStart(locator, this, buffer); appendFields(locator, buffer, strategy); strategy.appendEnd(locator, this, buffer); return buffer; } @Override public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) { super.appendFields(locator, buffer, strategy); { CodeableConcept theItemCodeableConcept; theItemCodeableConcept = this.getItemCodeableConcept(); strategy.appendField(locator, this, "itemCodeableConcept", buffer, theItemCodeableConcept, (this.itemCodeableConcept!= null)); } { Reference theItemReference; theItemReference = this.getItemReference(); strategy.appendField(locator, this, "itemReference", buffer, theItemReference, (this.itemReference!= null)); } { Ratio theAmount; theAmount = this.getAmount(); strategy.appendField(locator, this, "amount", buffer, theAmount, (this.amount!= null)); } return buffer; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy