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

org.hl7.fhir.QuestionnaireResponse 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.06 at 03:09:41 PM MST 
//


package org.hl7.fhir;

import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
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;


/**
 * If the element is present, it must have either a @value, an @id, or extensions
 * 
 * 

Java class for QuestionnaireResponse complex type. * *

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

 * <complexType name="QuestionnaireResponse">
 *   <complexContent>
 *     <extension base="{http://hl7.org/fhir}DomainResource">
 *       <sequence>
 *         <element name="identifier" type="{http://hl7.org/fhir}Identifier" minOccurs="0"/>
 *         <element name="questionnaire" type="{http://hl7.org/fhir}Reference" minOccurs="0"/>
 *         <element name="status" type="{http://hl7.org/fhir}QuestionnaireResponseStatus"/>
 *         <element name="subject" type="{http://hl7.org/fhir}Reference" minOccurs="0"/>
 *         <element name="author" type="{http://hl7.org/fhir}Reference" minOccurs="0"/>
 *         <element name="authored" type="{http://hl7.org/fhir}dateTime" minOccurs="0"/>
 *         <element name="source" type="{http://hl7.org/fhir}Reference" minOccurs="0"/>
 *         <element name="encounter" type="{http://hl7.org/fhir}Reference" minOccurs="0"/>
 *         <element name="item" type="{http://hl7.org/fhir}QuestionnaireResponse.Item" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "QuestionnaireResponse", propOrder = { "identifier", "questionnaire", "status", "subject", "author", "authored", "source", "encounter", "item" }) public class QuestionnaireResponse extends DomainResource implements Equals2, HashCode2, ToString2 { protected Identifier identifier; protected Reference questionnaire; @XmlElement(required = true) protected QuestionnaireResponseStatus status; protected Reference subject; protected Reference author; protected DateTime authored; protected Reference source; protected Reference encounter; protected List item; /** * Gets the value of the identifier property. * * @return * possible object is * {@link Identifier } * */ public Identifier getIdentifier() { return identifier; } /** * Sets the value of the identifier property. * * @param value * allowed object is * {@link Identifier } * */ public void setIdentifier(Identifier value) { this.identifier = value; } /** * Gets the value of the questionnaire property. * * @return * possible object is * {@link Reference } * */ public Reference getQuestionnaire() { return questionnaire; } /** * Sets the value of the questionnaire property. * * @param value * allowed object is * {@link Reference } * */ public void setQuestionnaire(Reference value) { this.questionnaire = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link QuestionnaireResponseStatus } * */ public QuestionnaireResponseStatus getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link QuestionnaireResponseStatus } * */ public void setStatus(QuestionnaireResponseStatus value) { this.status = value; } /** * Gets the value of the subject property. * * @return * possible object is * {@link Reference } * */ public Reference getSubject() { return subject; } /** * Sets the value of the subject property. * * @param value * allowed object is * {@link Reference } * */ public void setSubject(Reference value) { this.subject = value; } /** * Gets the value of the author property. * * @return * possible object is * {@link Reference } * */ public Reference getAuthor() { return author; } /** * Sets the value of the author property. * * @param value * allowed object is * {@link Reference } * */ public void setAuthor(Reference value) { this.author = value; } /** * Gets the value of the authored property. * * @return * possible object is * {@link DateTime } * */ public DateTime getAuthored() { return authored; } /** * Sets the value of the authored property. * * @param value * allowed object is * {@link DateTime } * */ public void setAuthored(DateTime value) { this.authored = value; } /** * Gets the value of the source property. * * @return * possible object is * {@link Reference } * */ public Reference getSource() { return source; } /** * Sets the value of the source property. * * @param value * allowed object is * {@link Reference } * */ public void setSource(Reference value) { this.source = value; } /** * Gets the value of the encounter property. * * @return * possible object is * {@link Reference } * */ public Reference getEncounter() { return encounter; } /** * Sets the value of the encounter property. * * @param value * allowed object is * {@link Reference } * */ public void setEncounter(Reference value) { this.encounter = value; } /** * Gets the value of the item property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a set method for the item property. * *

* For example, to add a new item, do as follows: *

     *    getItem().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link QuestionnaireResponseItem } * * */ public List getItem() { if (item == null) { item = new ArrayList(); } return this.item; } public QuestionnaireResponse withIdentifier(Identifier value) { setIdentifier(value); return this; } public QuestionnaireResponse withQuestionnaire(Reference value) { setQuestionnaire(value); return this; } public QuestionnaireResponse withStatus(QuestionnaireResponseStatus value) { setStatus(value); return this; } public QuestionnaireResponse withSubject(Reference value) { setSubject(value); return this; } public QuestionnaireResponse withAuthor(Reference value) { setAuthor(value); return this; } public QuestionnaireResponse withAuthored(DateTime value) { setAuthored(value); return this; } public QuestionnaireResponse withSource(Reference value) { setSource(value); return this; } public QuestionnaireResponse withEncounter(Reference value) { setEncounter(value); return this; } public QuestionnaireResponse withItem(QuestionnaireResponseItem... values) { if (values!= null) { for (QuestionnaireResponseItem value: values) { getItem().add(value); } } return this; } public QuestionnaireResponse withItem(Collection values) { if (values!= null) { getItem().addAll(values); } return this; } @Override public QuestionnaireResponse withText(Narrative value) { setText(value); return this; } @Override public QuestionnaireResponse withContained(ResourceContainer... values) { if (values!= null) { for (ResourceContainer value: values) { getContained().add(value); } } return this; } @Override public QuestionnaireResponse withContained(Collection values) { if (values!= null) { getContained().addAll(values); } return this; } @Override public QuestionnaireResponse withExtension(Extension... values) { if (values!= null) { for (Extension value: values) { getExtension().add(value); } } return this; } @Override public QuestionnaireResponse withExtension(Collection values) { if (values!= null) { getExtension().addAll(values); } return this; } @Override public QuestionnaireResponse withModifierExtension(Extension... values) { if (values!= null) { for (Extension value: values) { getModifierExtension().add(value); } } return this; } @Override public QuestionnaireResponse withModifierExtension(Collection values) { if (values!= null) { getModifierExtension().addAll(values); } return this; } @Override public QuestionnaireResponse withId(Id value) { setId(value); return this; } @Override public QuestionnaireResponse withMeta(Meta value) { setMeta(value); return this; } @Override public QuestionnaireResponse withImplicitRules(Uri value) { setImplicitRules(value); return this; } @Override public QuestionnaireResponse withLanguage(Code value) { setLanguage(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 QuestionnaireResponse that = ((QuestionnaireResponse) object); { Identifier lhsIdentifier; lhsIdentifier = this.getIdentifier(); Identifier rhsIdentifier; rhsIdentifier = that.getIdentifier(); if (!strategy.equals(LocatorUtils.property(thisLocator, "identifier", lhsIdentifier), LocatorUtils.property(thatLocator, "identifier", rhsIdentifier), lhsIdentifier, rhsIdentifier, (this.identifier!= null), (that.identifier!= null))) { return false; } } { Reference lhsQuestionnaire; lhsQuestionnaire = this.getQuestionnaire(); Reference rhsQuestionnaire; rhsQuestionnaire = that.getQuestionnaire(); if (!strategy.equals(LocatorUtils.property(thisLocator, "questionnaire", lhsQuestionnaire), LocatorUtils.property(thatLocator, "questionnaire", rhsQuestionnaire), lhsQuestionnaire, rhsQuestionnaire, (this.questionnaire!= null), (that.questionnaire!= null))) { return false; } } { QuestionnaireResponseStatus lhsStatus; lhsStatus = this.getStatus(); QuestionnaireResponseStatus rhsStatus; rhsStatus = that.getStatus(); if (!strategy.equals(LocatorUtils.property(thisLocator, "status", lhsStatus), LocatorUtils.property(thatLocator, "status", rhsStatus), lhsStatus, rhsStatus, (this.status!= null), (that.status!= null))) { return false; } } { Reference lhsSubject; lhsSubject = this.getSubject(); Reference rhsSubject; rhsSubject = that.getSubject(); if (!strategy.equals(LocatorUtils.property(thisLocator, "subject", lhsSubject), LocatorUtils.property(thatLocator, "subject", rhsSubject), lhsSubject, rhsSubject, (this.subject!= null), (that.subject!= null))) { return false; } } { Reference lhsAuthor; lhsAuthor = this.getAuthor(); Reference rhsAuthor; rhsAuthor = that.getAuthor(); if (!strategy.equals(LocatorUtils.property(thisLocator, "author", lhsAuthor), LocatorUtils.property(thatLocator, "author", rhsAuthor), lhsAuthor, rhsAuthor, (this.author!= null), (that.author!= null))) { return false; } } { DateTime lhsAuthored; lhsAuthored = this.getAuthored(); DateTime rhsAuthored; rhsAuthored = that.getAuthored(); if (!strategy.equals(LocatorUtils.property(thisLocator, "authored", lhsAuthored), LocatorUtils.property(thatLocator, "authored", rhsAuthored), lhsAuthored, rhsAuthored, (this.authored!= null), (that.authored!= null))) { return false; } } { Reference lhsSource; lhsSource = this.getSource(); Reference rhsSource; rhsSource = that.getSource(); if (!strategy.equals(LocatorUtils.property(thisLocator, "source", lhsSource), LocatorUtils.property(thatLocator, "source", rhsSource), lhsSource, rhsSource, (this.source!= null), (that.source!= null))) { return false; } } { Reference lhsEncounter; lhsEncounter = this.getEncounter(); Reference rhsEncounter; rhsEncounter = that.getEncounter(); if (!strategy.equals(LocatorUtils.property(thisLocator, "encounter", lhsEncounter), LocatorUtils.property(thatLocator, "encounter", rhsEncounter), lhsEncounter, rhsEncounter, (this.encounter!= null), (that.encounter!= null))) { return false; } } { List lhsItem; lhsItem = (((this.item!= null)&&(!this.item.isEmpty()))?this.getItem():null); List rhsItem; rhsItem = (((that.item!= null)&&(!that.item.isEmpty()))?that.getItem():null); if (!strategy.equals(LocatorUtils.property(thisLocator, "item", lhsItem), LocatorUtils.property(thatLocator, "item", rhsItem), lhsItem, rhsItem, ((this.item!= null)&&(!this.item.isEmpty())), ((that.item!= null)&&(!that.item.isEmpty())))) { 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); { Identifier theIdentifier; theIdentifier = this.getIdentifier(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "identifier", theIdentifier), currentHashCode, theIdentifier, (this.identifier!= null)); } { Reference theQuestionnaire; theQuestionnaire = this.getQuestionnaire(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "questionnaire", theQuestionnaire), currentHashCode, theQuestionnaire, (this.questionnaire!= null)); } { QuestionnaireResponseStatus theStatus; theStatus = this.getStatus(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "status", theStatus), currentHashCode, theStatus, (this.status!= null)); } { Reference theSubject; theSubject = this.getSubject(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "subject", theSubject), currentHashCode, theSubject, (this.subject!= null)); } { Reference theAuthor; theAuthor = this.getAuthor(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "author", theAuthor), currentHashCode, theAuthor, (this.author!= null)); } { DateTime theAuthored; theAuthored = this.getAuthored(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "authored", theAuthored), currentHashCode, theAuthored, (this.authored!= null)); } { Reference theSource; theSource = this.getSource(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "source", theSource), currentHashCode, theSource, (this.source!= null)); } { Reference theEncounter; theEncounter = this.getEncounter(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "encounter", theEncounter), currentHashCode, theEncounter, (this.encounter!= null)); } { List theItem; theItem = (((this.item!= null)&&(!this.item.isEmpty()))?this.getItem():null); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "item", theItem), currentHashCode, theItem, ((this.item!= null)&&(!this.item.isEmpty()))); } 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); { Identifier theIdentifier; theIdentifier = this.getIdentifier(); strategy.appendField(locator, this, "identifier", buffer, theIdentifier, (this.identifier!= null)); } { Reference theQuestionnaire; theQuestionnaire = this.getQuestionnaire(); strategy.appendField(locator, this, "questionnaire", buffer, theQuestionnaire, (this.questionnaire!= null)); } { QuestionnaireResponseStatus theStatus; theStatus = this.getStatus(); strategy.appendField(locator, this, "status", buffer, theStatus, (this.status!= null)); } { Reference theSubject; theSubject = this.getSubject(); strategy.appendField(locator, this, "subject", buffer, theSubject, (this.subject!= null)); } { Reference theAuthor; theAuthor = this.getAuthor(); strategy.appendField(locator, this, "author", buffer, theAuthor, (this.author!= null)); } { DateTime theAuthored; theAuthored = this.getAuthored(); strategy.appendField(locator, this, "authored", buffer, theAuthored, (this.authored!= null)); } { Reference theSource; theSource = this.getSource(); strategy.appendField(locator, this, "source", buffer, theSource, (this.source!= null)); } { Reference theEncounter; theEncounter = this.getEncounter(); strategy.appendField(locator, this, "encounter", buffer, theEncounter, (this.encounter!= null)); } { List theItem; theItem = (((this.item!= null)&&(!this.item.isEmpty()))?this.getItem():null); strategy.appendField(locator, this, "item", buffer, theItem, ((this.item!= null)&&(!this.item.isEmpty()))); } return buffer; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy