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

org.hl7.fhir.MedicationOrderDispenseRequest 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: 2024.05.02 at 09:57:28 AM MDT 
//


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;


/**
 * An order for both supply of the medication and the instructions for administration of the medication to a patient. The resource is called "MedicationOrder" rather than "MedicationPrescription" to generalize the use across inpatient and outpatient settings as well as for care plans, etc.
 * 
 * 

Java class for MedicationOrder.DispenseRequest complex type. * *

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

 * <complexType name="MedicationOrder.DispenseRequest">
 *   <complexContent>
 *     <extension base="{http://hl7.org/fhir}BackboneElement">
 *       <sequence>
 *         <choice minOccurs="0">
 *           <element name="medicationCodeableConcept" type="{http://hl7.org/fhir}CodeableConcept"/>
 *           <element name="medicationReference" type="{http://hl7.org/fhir}Reference"/>
 *         </choice>
 *         <element name="validityPeriod" type="{http://hl7.org/fhir}Period" minOccurs="0"/>
 *         <element name="numberOfRepeatsAllowed" type="{http://hl7.org/fhir}positiveInt" minOccurs="0"/>
 *         <element name="quantity" type="{http://hl7.org/fhir}SimpleQuantity" minOccurs="0"/>
 *         <element name="expectedSupplyDuration" type="{http://hl7.org/fhir}Duration" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MedicationOrder.DispenseRequest", propOrder = { "medicationCodeableConcept", "medicationReference", "validityPeriod", "numberOfRepeatsAllowed", "quantity", "expectedSupplyDuration" }) public class MedicationOrderDispenseRequest extends BackboneElement implements Equals2, HashCode2, ToString2 { protected CodeableConcept medicationCodeableConcept; protected Reference medicationReference; protected Period validityPeriod; protected PositiveInt numberOfRepeatsAllowed; protected SimpleQuantity quantity; protected Duration expectedSupplyDuration; /** * Gets the value of the medicationCodeableConcept property. * * @return * possible object is * {@link CodeableConcept } * */ public CodeableConcept getMedicationCodeableConcept() { return medicationCodeableConcept; } /** * Sets the value of the medicationCodeableConcept property. * * @param value * allowed object is * {@link CodeableConcept } * */ public void setMedicationCodeableConcept(CodeableConcept value) { this.medicationCodeableConcept = value; } /** * Gets the value of the medicationReference property. * * @return * possible object is * {@link Reference } * */ public Reference getMedicationReference() { return medicationReference; } /** * Sets the value of the medicationReference property. * * @param value * allowed object is * {@link Reference } * */ public void setMedicationReference(Reference value) { this.medicationReference = value; } /** * Gets the value of the validityPeriod property. * * @return * possible object is * {@link Period } * */ public Period getValidityPeriod() { return validityPeriod; } /** * Sets the value of the validityPeriod property. * * @param value * allowed object is * {@link Period } * */ public void setValidityPeriod(Period value) { this.validityPeriod = value; } /** * Gets the value of the numberOfRepeatsAllowed property. * * @return * possible object is * {@link PositiveInt } * */ public PositiveInt getNumberOfRepeatsAllowed() { return numberOfRepeatsAllowed; } /** * Sets the value of the numberOfRepeatsAllowed property. * * @param value * allowed object is * {@link PositiveInt } * */ public void setNumberOfRepeatsAllowed(PositiveInt value) { this.numberOfRepeatsAllowed = value; } /** * Gets the value of the quantity property. * * @return * possible object is * {@link SimpleQuantity } * */ public SimpleQuantity getQuantity() { return quantity; } /** * Sets the value of the quantity property. * * @param value * allowed object is * {@link SimpleQuantity } * */ public void setQuantity(SimpleQuantity value) { this.quantity = value; } /** * Gets the value of the expectedSupplyDuration property. * * @return * possible object is * {@link Duration } * */ public Duration getExpectedSupplyDuration() { return expectedSupplyDuration; } /** * Sets the value of the expectedSupplyDuration property. * * @param value * allowed object is * {@link Duration } * */ public void setExpectedSupplyDuration(Duration value) { this.expectedSupplyDuration = value; } public MedicationOrderDispenseRequest withMedicationCodeableConcept(CodeableConcept value) { setMedicationCodeableConcept(value); return this; } public MedicationOrderDispenseRequest withMedicationReference(Reference value) { setMedicationReference(value); return this; } public MedicationOrderDispenseRequest withValidityPeriod(Period value) { setValidityPeriod(value); return this; } public MedicationOrderDispenseRequest withNumberOfRepeatsAllowed(PositiveInt value) { setNumberOfRepeatsAllowed(value); return this; } public MedicationOrderDispenseRequest withQuantity(SimpleQuantity value) { setQuantity(value); return this; } public MedicationOrderDispenseRequest withExpectedSupplyDuration(Duration value) { setExpectedSupplyDuration(value); return this; } @Override public MedicationOrderDispenseRequest withModifierExtension(Extension... values) { if (values!= null) { for (Extension value: values) { getModifierExtension().add(value); } } return this; } @Override public MedicationOrderDispenseRequest withModifierExtension(Collection values) { if (values!= null) { getModifierExtension().addAll(values); } return this; } @Override public MedicationOrderDispenseRequest withExtension(Extension... values) { if (values!= null) { for (Extension value: values) { getExtension().add(value); } } return this; } @Override public MedicationOrderDispenseRequest withExtension(Collection values) { if (values!= null) { getExtension().addAll(values); } return this; } @Override public MedicationOrderDispenseRequest 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 MedicationOrderDispenseRequest that = ((MedicationOrderDispenseRequest) object); { CodeableConcept lhsMedicationCodeableConcept; lhsMedicationCodeableConcept = this.getMedicationCodeableConcept(); CodeableConcept rhsMedicationCodeableConcept; rhsMedicationCodeableConcept = that.getMedicationCodeableConcept(); if (!strategy.equals(LocatorUtils.property(thisLocator, "medicationCodeableConcept", lhsMedicationCodeableConcept), LocatorUtils.property(thatLocator, "medicationCodeableConcept", rhsMedicationCodeableConcept), lhsMedicationCodeableConcept, rhsMedicationCodeableConcept, (this.medicationCodeableConcept!= null), (that.medicationCodeableConcept!= null))) { return false; } } { Reference lhsMedicationReference; lhsMedicationReference = this.getMedicationReference(); Reference rhsMedicationReference; rhsMedicationReference = that.getMedicationReference(); if (!strategy.equals(LocatorUtils.property(thisLocator, "medicationReference", lhsMedicationReference), LocatorUtils.property(thatLocator, "medicationReference", rhsMedicationReference), lhsMedicationReference, rhsMedicationReference, (this.medicationReference!= null), (that.medicationReference!= null))) { return false; } } { Period lhsValidityPeriod; lhsValidityPeriod = this.getValidityPeriod(); Period rhsValidityPeriod; rhsValidityPeriod = that.getValidityPeriod(); if (!strategy.equals(LocatorUtils.property(thisLocator, "validityPeriod", lhsValidityPeriod), LocatorUtils.property(thatLocator, "validityPeriod", rhsValidityPeriod), lhsValidityPeriod, rhsValidityPeriod, (this.validityPeriod!= null), (that.validityPeriod!= null))) { return false; } } { PositiveInt lhsNumberOfRepeatsAllowed; lhsNumberOfRepeatsAllowed = this.getNumberOfRepeatsAllowed(); PositiveInt rhsNumberOfRepeatsAllowed; rhsNumberOfRepeatsAllowed = that.getNumberOfRepeatsAllowed(); if (!strategy.equals(LocatorUtils.property(thisLocator, "numberOfRepeatsAllowed", lhsNumberOfRepeatsAllowed), LocatorUtils.property(thatLocator, "numberOfRepeatsAllowed", rhsNumberOfRepeatsAllowed), lhsNumberOfRepeatsAllowed, rhsNumberOfRepeatsAllowed, (this.numberOfRepeatsAllowed!= null), (that.numberOfRepeatsAllowed!= null))) { return false; } } { SimpleQuantity lhsQuantity; lhsQuantity = this.getQuantity(); SimpleQuantity rhsQuantity; rhsQuantity = that.getQuantity(); if (!strategy.equals(LocatorUtils.property(thisLocator, "quantity", lhsQuantity), LocatorUtils.property(thatLocator, "quantity", rhsQuantity), lhsQuantity, rhsQuantity, (this.quantity!= null), (that.quantity!= null))) { return false; } } { Duration lhsExpectedSupplyDuration; lhsExpectedSupplyDuration = this.getExpectedSupplyDuration(); Duration rhsExpectedSupplyDuration; rhsExpectedSupplyDuration = that.getExpectedSupplyDuration(); if (!strategy.equals(LocatorUtils.property(thisLocator, "expectedSupplyDuration", lhsExpectedSupplyDuration), LocatorUtils.property(thatLocator, "expectedSupplyDuration", rhsExpectedSupplyDuration), lhsExpectedSupplyDuration, rhsExpectedSupplyDuration, (this.expectedSupplyDuration!= null), (that.expectedSupplyDuration!= 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 theMedicationCodeableConcept; theMedicationCodeableConcept = this.getMedicationCodeableConcept(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "medicationCodeableConcept", theMedicationCodeableConcept), currentHashCode, theMedicationCodeableConcept, (this.medicationCodeableConcept!= null)); } { Reference theMedicationReference; theMedicationReference = this.getMedicationReference(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "medicationReference", theMedicationReference), currentHashCode, theMedicationReference, (this.medicationReference!= null)); } { Period theValidityPeriod; theValidityPeriod = this.getValidityPeriod(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "validityPeriod", theValidityPeriod), currentHashCode, theValidityPeriod, (this.validityPeriod!= null)); } { PositiveInt theNumberOfRepeatsAllowed; theNumberOfRepeatsAllowed = this.getNumberOfRepeatsAllowed(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "numberOfRepeatsAllowed", theNumberOfRepeatsAllowed), currentHashCode, theNumberOfRepeatsAllowed, (this.numberOfRepeatsAllowed!= null)); } { SimpleQuantity theQuantity; theQuantity = this.getQuantity(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "quantity", theQuantity), currentHashCode, theQuantity, (this.quantity!= null)); } { Duration theExpectedSupplyDuration; theExpectedSupplyDuration = this.getExpectedSupplyDuration(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "expectedSupplyDuration", theExpectedSupplyDuration), currentHashCode, theExpectedSupplyDuration, (this.expectedSupplyDuration!= 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 theMedicationCodeableConcept; theMedicationCodeableConcept = this.getMedicationCodeableConcept(); strategy.appendField(locator, this, "medicationCodeableConcept", buffer, theMedicationCodeableConcept, (this.medicationCodeableConcept!= null)); } { Reference theMedicationReference; theMedicationReference = this.getMedicationReference(); strategy.appendField(locator, this, "medicationReference", buffer, theMedicationReference, (this.medicationReference!= null)); } { Period theValidityPeriod; theValidityPeriod = this.getValidityPeriod(); strategy.appendField(locator, this, "validityPeriod", buffer, theValidityPeriod, (this.validityPeriod!= null)); } { PositiveInt theNumberOfRepeatsAllowed; theNumberOfRepeatsAllowed = this.getNumberOfRepeatsAllowed(); strategy.appendField(locator, this, "numberOfRepeatsAllowed", buffer, theNumberOfRepeatsAllowed, (this.numberOfRepeatsAllowed!= null)); } { SimpleQuantity theQuantity; theQuantity = this.getQuantity(); strategy.appendField(locator, this, "quantity", buffer, theQuantity, (this.quantity!= null)); } { Duration theExpectedSupplyDuration; theExpectedSupplyDuration = this.getExpectedSupplyDuration(); strategy.appendField(locator, this, "expectedSupplyDuration", buffer, theExpectedSupplyDuration, (this.expectedSupplyDuration!= null)); } return buffer; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy