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

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

Go to download

The quick library for the Clinical Quality Language Java reference implementation

There is a newer version: 3.15.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.08.16 at 09:36:55 AM MDT 
//


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 CodeSystem complex type. * *

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

 * <complexType name="CodeSystem">
 *   <complexContent>
 *     <extension base="{http://hl7.org/fhir}DomainResource">
 *       <sequence>
 *         <element name="url" type="{http://hl7.org/fhir}uri" minOccurs="0"/>
 *         <element name="identifier" type="{http://hl7.org/fhir}Identifier" minOccurs="0"/>
 *         <element name="version" type="{http://hl7.org/fhir}string" minOccurs="0"/>
 *         <element name="name" type="{http://hl7.org/fhir}string" minOccurs="0"/>
 *         <element name="status" type="{http://hl7.org/fhir}ConformanceResourceStatus"/>
 *         <element name="experimental" type="{http://hl7.org/fhir}boolean" minOccurs="0"/>
 *         <element name="publisher" type="{http://hl7.org/fhir}string" minOccurs="0"/>
 *         <element name="contact" type="{http://hl7.org/fhir}CodeSystem.Contact" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="date" type="{http://hl7.org/fhir}dateTime" minOccurs="0"/>
 *         <element name="description" type="{http://hl7.org/fhir}string" minOccurs="0"/>
 *         <element name="useContext" type="{http://hl7.org/fhir}CodeableConcept" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="requirements" type="{http://hl7.org/fhir}string" minOccurs="0"/>
 *         <element name="copyright" type="{http://hl7.org/fhir}string" minOccurs="0"/>
 *         <element name="caseSensitive" type="{http://hl7.org/fhir}boolean" minOccurs="0"/>
 *         <element name="valueSet" type="{http://hl7.org/fhir}uri" minOccurs="0"/>
 *         <element name="compositional" type="{http://hl7.org/fhir}boolean" minOccurs="0"/>
 *         <element name="versionNeeded" type="{http://hl7.org/fhir}boolean" minOccurs="0"/>
 *         <element name="content" type="{http://hl7.org/fhir}CodeSystemContentMode"/>
 *         <element name="count" type="{http://hl7.org/fhir}unsignedInt" minOccurs="0"/>
 *         <element name="filter" type="{http://hl7.org/fhir}CodeSystem.Filter" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="property" type="{http://hl7.org/fhir}CodeSystem.Property" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="concept" type="{http://hl7.org/fhir}CodeSystem.Concept" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CodeSystem", propOrder = { "url", "identifier", "version", "name", "status", "experimental", "publisher", "contact", "date", "description", "useContext", "requirements", "copyright", "caseSensitive", "valueSet", "compositional", "versionNeeded", "content", "count", "filter", "property", "concept" }) public class CodeSystem extends DomainResource implements Equals2, HashCode2, ToString2 { protected Uri url; protected Identifier identifier; protected org.hl7.fhir.String version; protected org.hl7.fhir.String name; @XmlElement(required = true) protected ConformanceResourceStatus status; protected Boolean experimental; protected org.hl7.fhir.String publisher; protected List contact; protected DateTime date; protected org.hl7.fhir.String description; protected List useContext; protected org.hl7.fhir.String requirements; protected org.hl7.fhir.String copyright; protected Boolean caseSensitive; protected Uri valueSet; protected Boolean compositional; protected Boolean versionNeeded; @XmlElement(required = true) protected CodeSystemContentMode content; protected UnsignedInt count; protected List filter; protected List property; protected List concept; /** * Gets the value of the url property. * * @return * possible object is * {@link Uri } * */ public Uri getUrl() { return url; } /** * Sets the value of the url property. * * @param value * allowed object is * {@link Uri } * */ public void setUrl(Uri value) { this.url = value; } /** * 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 version property. * * @return * possible object is * {@link org.hl7.fhir.String } * */ public org.hl7.fhir.String getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link org.hl7.fhir.String } * */ public void setVersion(org.hl7.fhir.String value) { this.version = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link org.hl7.fhir.String } * */ public org.hl7.fhir.String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link org.hl7.fhir.String } * */ public void setName(org.hl7.fhir.String value) { this.name = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link ConformanceResourceStatus } * */ public ConformanceResourceStatus getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link ConformanceResourceStatus } * */ public void setStatus(ConformanceResourceStatus value) { this.status = value; } /** * Gets the value of the experimental property. * * @return * possible object is * {@link Boolean } * */ public Boolean getExperimental() { return experimental; } /** * Sets the value of the experimental property. * * @param value * allowed object is * {@link Boolean } * */ public void setExperimental(Boolean value) { this.experimental = value; } /** * Gets the value of the publisher property. * * @return * possible object is * {@link org.hl7.fhir.String } * */ public org.hl7.fhir.String getPublisher() { return publisher; } /** * Sets the value of the publisher property. * * @param value * allowed object is * {@link org.hl7.fhir.String } * */ public void setPublisher(org.hl7.fhir.String value) { this.publisher = value; } /** * Gets the value of the contact 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 contact property. * *

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

     *    getContact().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link CodeSystemContact } * * */ public List getContact() { if (contact == null) { contact = new ArrayList(); } return this.contact; } /** * Gets the value of the date property. * * @return * possible object is * {@link DateTime } * */ public DateTime getDate() { return date; } /** * Sets the value of the date property. * * @param value * allowed object is * {@link DateTime } * */ public void setDate(DateTime value) { this.date = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link org.hl7.fhir.String } * */ public org.hl7.fhir.String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link org.hl7.fhir.String } * */ public void setDescription(org.hl7.fhir.String value) { this.description = value; } /** * Gets the value of the useContext 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 useContext property. * *

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

     *    getUseContext().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link CodeableConcept } * * */ public List getUseContext() { if (useContext == null) { useContext = new ArrayList(); } return this.useContext; } /** * Gets the value of the requirements property. * * @return * possible object is * {@link org.hl7.fhir.String } * */ public org.hl7.fhir.String getRequirements() { return requirements; } /** * Sets the value of the requirements property. * * @param value * allowed object is * {@link org.hl7.fhir.String } * */ public void setRequirements(org.hl7.fhir.String value) { this.requirements = value; } /** * Gets the value of the copyright property. * * @return * possible object is * {@link org.hl7.fhir.String } * */ public org.hl7.fhir.String getCopyright() { return copyright; } /** * Sets the value of the copyright property. * * @param value * allowed object is * {@link org.hl7.fhir.String } * */ public void setCopyright(org.hl7.fhir.String value) { this.copyright = value; } /** * Gets the value of the caseSensitive property. * * @return * possible object is * {@link Boolean } * */ public Boolean getCaseSensitive() { return caseSensitive; } /** * Sets the value of the caseSensitive property. * * @param value * allowed object is * {@link Boolean } * */ public void setCaseSensitive(Boolean value) { this.caseSensitive = value; } /** * Gets the value of the valueSet property. * * @return * possible object is * {@link Uri } * */ public Uri getValueSet() { return valueSet; } /** * Sets the value of the valueSet property. * * @param value * allowed object is * {@link Uri } * */ public void setValueSet(Uri value) { this.valueSet = value; } /** * Gets the value of the compositional property. * * @return * possible object is * {@link Boolean } * */ public Boolean getCompositional() { return compositional; } /** * Sets the value of the compositional property. * * @param value * allowed object is * {@link Boolean } * */ public void setCompositional(Boolean value) { this.compositional = value; } /** * Gets the value of the versionNeeded property. * * @return * possible object is * {@link Boolean } * */ public Boolean getVersionNeeded() { return versionNeeded; } /** * Sets the value of the versionNeeded property. * * @param value * allowed object is * {@link Boolean } * */ public void setVersionNeeded(Boolean value) { this.versionNeeded = value; } /** * Gets the value of the content property. * * @return * possible object is * {@link CodeSystemContentMode } * */ public CodeSystemContentMode getContent() { return content; } /** * Sets the value of the content property. * * @param value * allowed object is * {@link CodeSystemContentMode } * */ public void setContent(CodeSystemContentMode value) { this.content = value; } /** * Gets the value of the count property. * * @return * possible object is * {@link UnsignedInt } * */ public UnsignedInt getCount() { return count; } /** * Sets the value of the count property. * * @param value * allowed object is * {@link UnsignedInt } * */ public void setCount(UnsignedInt value) { this.count = value; } /** * Gets the value of the filter 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 filter property. * *

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

     *    getFilter().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link CodeSystemFilter } * * */ public List getFilter() { if (filter == null) { filter = new ArrayList(); } return this.filter; } /** * Gets the value of the property 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 property property. * *

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

     *    getProperty().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link CodeSystemProperty } * * */ public List getProperty() { if (property == null) { property = new ArrayList(); } return this.property; } /** * Gets the value of the concept 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 concept property. * *

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

     *    getConcept().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link CodeSystemConcept } * * */ public List getConcept() { if (concept == null) { concept = new ArrayList(); } return this.concept; } public CodeSystem withUrl(Uri value) { setUrl(value); return this; } public CodeSystem withIdentifier(Identifier value) { setIdentifier(value); return this; } public CodeSystem withVersion(org.hl7.fhir.String value) { setVersion(value); return this; } public CodeSystem withName(org.hl7.fhir.String value) { setName(value); return this; } public CodeSystem withStatus(ConformanceResourceStatus value) { setStatus(value); return this; } public CodeSystem withExperimental(Boolean value) { setExperimental(value); return this; } public CodeSystem withPublisher(org.hl7.fhir.String value) { setPublisher(value); return this; } public CodeSystem withContact(CodeSystemContact... values) { if (values!= null) { for (CodeSystemContact value: values) { getContact().add(value); } } return this; } public CodeSystem withContact(Collection values) { if (values!= null) { getContact().addAll(values); } return this; } public CodeSystem withDate(DateTime value) { setDate(value); return this; } public CodeSystem withDescription(org.hl7.fhir.String value) { setDescription(value); return this; } public CodeSystem withUseContext(CodeableConcept... values) { if (values!= null) { for (CodeableConcept value: values) { getUseContext().add(value); } } return this; } public CodeSystem withUseContext(Collection values) { if (values!= null) { getUseContext().addAll(values); } return this; } public CodeSystem withRequirements(org.hl7.fhir.String value) { setRequirements(value); return this; } public CodeSystem withCopyright(org.hl7.fhir.String value) { setCopyright(value); return this; } public CodeSystem withCaseSensitive(Boolean value) { setCaseSensitive(value); return this; } public CodeSystem withValueSet(Uri value) { setValueSet(value); return this; } public CodeSystem withCompositional(Boolean value) { setCompositional(value); return this; } public CodeSystem withVersionNeeded(Boolean value) { setVersionNeeded(value); return this; } public CodeSystem withContent(CodeSystemContentMode value) { setContent(value); return this; } public CodeSystem withCount(UnsignedInt value) { setCount(value); return this; } public CodeSystem withFilter(CodeSystemFilter... values) { if (values!= null) { for (CodeSystemFilter value: values) { getFilter().add(value); } } return this; } public CodeSystem withFilter(Collection values) { if (values!= null) { getFilter().addAll(values); } return this; } public CodeSystem withProperty(CodeSystemProperty... values) { if (values!= null) { for (CodeSystemProperty value: values) { getProperty().add(value); } } return this; } public CodeSystem withProperty(Collection values) { if (values!= null) { getProperty().addAll(values); } return this; } public CodeSystem withConcept(CodeSystemConcept... values) { if (values!= null) { for (CodeSystemConcept value: values) { getConcept().add(value); } } return this; } public CodeSystem withConcept(Collection values) { if (values!= null) { getConcept().addAll(values); } return this; } @Override public CodeSystem withText(Narrative value) { setText(value); return this; } @Override public CodeSystem withContained(ResourceContainer... values) { if (values!= null) { for (ResourceContainer value: values) { getContained().add(value); } } return this; } @Override public CodeSystem withContained(Collection values) { if (values!= null) { getContained().addAll(values); } return this; } @Override public CodeSystem withExtension(Extension... values) { if (values!= null) { for (Extension value: values) { getExtension().add(value); } } return this; } @Override public CodeSystem withExtension(Collection values) { if (values!= null) { getExtension().addAll(values); } return this; } @Override public CodeSystem withModifierExtension(Extension... values) { if (values!= null) { for (Extension value: values) { getModifierExtension().add(value); } } return this; } @Override public CodeSystem withModifierExtension(Collection values) { if (values!= null) { getModifierExtension().addAll(values); } return this; } @Override public CodeSystem withId(Id value) { setId(value); return this; } @Override public CodeSystem withMeta(Meta value) { setMeta(value); return this; } @Override public CodeSystem withImplicitRules(Uri value) { setImplicitRules(value); return this; } @Override public CodeSystem 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 CodeSystem that = ((CodeSystem) object); { Uri lhsUrl; lhsUrl = this.getUrl(); Uri rhsUrl; rhsUrl = that.getUrl(); if (!strategy.equals(LocatorUtils.property(thisLocator, "url", lhsUrl), LocatorUtils.property(thatLocator, "url", rhsUrl), lhsUrl, rhsUrl, (this.url!= null), (that.url!= null))) { return false; } } { 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; } } { org.hl7.fhir.String lhsVersion; lhsVersion = this.getVersion(); org.hl7.fhir.String rhsVersion; rhsVersion = that.getVersion(); if (!strategy.equals(LocatorUtils.property(thisLocator, "version", lhsVersion), LocatorUtils.property(thatLocator, "version", rhsVersion), lhsVersion, rhsVersion, (this.version!= null), (that.version!= null))) { return false; } } { org.hl7.fhir.String lhsName; lhsName = this.getName(); org.hl7.fhir.String rhsName; rhsName = that.getName(); if (!strategy.equals(LocatorUtils.property(thisLocator, "name", lhsName), LocatorUtils.property(thatLocator, "name", rhsName), lhsName, rhsName, (this.name!= null), (that.name!= null))) { return false; } } { ConformanceResourceStatus lhsStatus; lhsStatus = this.getStatus(); ConformanceResourceStatus 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; } } { Boolean lhsExperimental; lhsExperimental = this.getExperimental(); Boolean rhsExperimental; rhsExperimental = that.getExperimental(); if (!strategy.equals(LocatorUtils.property(thisLocator, "experimental", lhsExperimental), LocatorUtils.property(thatLocator, "experimental", rhsExperimental), lhsExperimental, rhsExperimental, (this.experimental!= null), (that.experimental!= null))) { return false; } } { org.hl7.fhir.String lhsPublisher; lhsPublisher = this.getPublisher(); org.hl7.fhir.String rhsPublisher; rhsPublisher = that.getPublisher(); if (!strategy.equals(LocatorUtils.property(thisLocator, "publisher", lhsPublisher), LocatorUtils.property(thatLocator, "publisher", rhsPublisher), lhsPublisher, rhsPublisher, (this.publisher!= null), (that.publisher!= null))) { return false; } } { List lhsContact; lhsContact = (((this.contact!= null)&&(!this.contact.isEmpty()))?this.getContact():null); List rhsContact; rhsContact = (((that.contact!= null)&&(!that.contact.isEmpty()))?that.getContact():null); if (!strategy.equals(LocatorUtils.property(thisLocator, "contact", lhsContact), LocatorUtils.property(thatLocator, "contact", rhsContact), lhsContact, rhsContact, ((this.contact!= null)&&(!this.contact.isEmpty())), ((that.contact!= null)&&(!that.contact.isEmpty())))) { return false; } } { DateTime lhsDate; lhsDate = this.getDate(); DateTime rhsDate; rhsDate = that.getDate(); if (!strategy.equals(LocatorUtils.property(thisLocator, "date", lhsDate), LocatorUtils.property(thatLocator, "date", rhsDate), lhsDate, rhsDate, (this.date!= null), (that.date!= null))) { return false; } } { org.hl7.fhir.String lhsDescription; lhsDescription = this.getDescription(); org.hl7.fhir.String rhsDescription; rhsDescription = that.getDescription(); if (!strategy.equals(LocatorUtils.property(thisLocator, "description", lhsDescription), LocatorUtils.property(thatLocator, "description", rhsDescription), lhsDescription, rhsDescription, (this.description!= null), (that.description!= null))) { return false; } } { List lhsUseContext; lhsUseContext = (((this.useContext!= null)&&(!this.useContext.isEmpty()))?this.getUseContext():null); List rhsUseContext; rhsUseContext = (((that.useContext!= null)&&(!that.useContext.isEmpty()))?that.getUseContext():null); if (!strategy.equals(LocatorUtils.property(thisLocator, "useContext", lhsUseContext), LocatorUtils.property(thatLocator, "useContext", rhsUseContext), lhsUseContext, rhsUseContext, ((this.useContext!= null)&&(!this.useContext.isEmpty())), ((that.useContext!= null)&&(!that.useContext.isEmpty())))) { return false; } } { org.hl7.fhir.String lhsRequirements; lhsRequirements = this.getRequirements(); org.hl7.fhir.String rhsRequirements; rhsRequirements = that.getRequirements(); if (!strategy.equals(LocatorUtils.property(thisLocator, "requirements", lhsRequirements), LocatorUtils.property(thatLocator, "requirements", rhsRequirements), lhsRequirements, rhsRequirements, (this.requirements!= null), (that.requirements!= null))) { return false; } } { org.hl7.fhir.String lhsCopyright; lhsCopyright = this.getCopyright(); org.hl7.fhir.String rhsCopyright; rhsCopyright = that.getCopyright(); if (!strategy.equals(LocatorUtils.property(thisLocator, "copyright", lhsCopyright), LocatorUtils.property(thatLocator, "copyright", rhsCopyright), lhsCopyright, rhsCopyright, (this.copyright!= null), (that.copyright!= null))) { return false; } } { Boolean lhsCaseSensitive; lhsCaseSensitive = this.getCaseSensitive(); Boolean rhsCaseSensitive; rhsCaseSensitive = that.getCaseSensitive(); if (!strategy.equals(LocatorUtils.property(thisLocator, "caseSensitive", lhsCaseSensitive), LocatorUtils.property(thatLocator, "caseSensitive", rhsCaseSensitive), lhsCaseSensitive, rhsCaseSensitive, (this.caseSensitive!= null), (that.caseSensitive!= null))) { return false; } } { Uri lhsValueSet; lhsValueSet = this.getValueSet(); Uri rhsValueSet; rhsValueSet = that.getValueSet(); if (!strategy.equals(LocatorUtils.property(thisLocator, "valueSet", lhsValueSet), LocatorUtils.property(thatLocator, "valueSet", rhsValueSet), lhsValueSet, rhsValueSet, (this.valueSet!= null), (that.valueSet!= null))) { return false; } } { Boolean lhsCompositional; lhsCompositional = this.getCompositional(); Boolean rhsCompositional; rhsCompositional = that.getCompositional(); if (!strategy.equals(LocatorUtils.property(thisLocator, "compositional", lhsCompositional), LocatorUtils.property(thatLocator, "compositional", rhsCompositional), lhsCompositional, rhsCompositional, (this.compositional!= null), (that.compositional!= null))) { return false; } } { Boolean lhsVersionNeeded; lhsVersionNeeded = this.getVersionNeeded(); Boolean rhsVersionNeeded; rhsVersionNeeded = that.getVersionNeeded(); if (!strategy.equals(LocatorUtils.property(thisLocator, "versionNeeded", lhsVersionNeeded), LocatorUtils.property(thatLocator, "versionNeeded", rhsVersionNeeded), lhsVersionNeeded, rhsVersionNeeded, (this.versionNeeded!= null), (that.versionNeeded!= null))) { return false; } } { CodeSystemContentMode lhsContent; lhsContent = this.getContent(); CodeSystemContentMode rhsContent; rhsContent = that.getContent(); if (!strategy.equals(LocatorUtils.property(thisLocator, "content", lhsContent), LocatorUtils.property(thatLocator, "content", rhsContent), lhsContent, rhsContent, (this.content!= null), (that.content!= null))) { return false; } } { UnsignedInt lhsCount; lhsCount = this.getCount(); UnsignedInt rhsCount; rhsCount = that.getCount(); if (!strategy.equals(LocatorUtils.property(thisLocator, "count", lhsCount), LocatorUtils.property(thatLocator, "count", rhsCount), lhsCount, rhsCount, (this.count!= null), (that.count!= null))) { return false; } } { List lhsFilter; lhsFilter = (((this.filter!= null)&&(!this.filter.isEmpty()))?this.getFilter():null); List rhsFilter; rhsFilter = (((that.filter!= null)&&(!that.filter.isEmpty()))?that.getFilter():null); if (!strategy.equals(LocatorUtils.property(thisLocator, "filter", lhsFilter), LocatorUtils.property(thatLocator, "filter", rhsFilter), lhsFilter, rhsFilter, ((this.filter!= null)&&(!this.filter.isEmpty())), ((that.filter!= null)&&(!that.filter.isEmpty())))) { return false; } } { List lhsProperty; lhsProperty = (((this.property!= null)&&(!this.property.isEmpty()))?this.getProperty():null); List rhsProperty; rhsProperty = (((that.property!= null)&&(!that.property.isEmpty()))?that.getProperty():null); if (!strategy.equals(LocatorUtils.property(thisLocator, "property", lhsProperty), LocatorUtils.property(thatLocator, "property", rhsProperty), lhsProperty, rhsProperty, ((this.property!= null)&&(!this.property.isEmpty())), ((that.property!= null)&&(!that.property.isEmpty())))) { return false; } } { List lhsConcept; lhsConcept = (((this.concept!= null)&&(!this.concept.isEmpty()))?this.getConcept():null); List rhsConcept; rhsConcept = (((that.concept!= null)&&(!that.concept.isEmpty()))?that.getConcept():null); if (!strategy.equals(LocatorUtils.property(thisLocator, "concept", lhsConcept), LocatorUtils.property(thatLocator, "concept", rhsConcept), lhsConcept, rhsConcept, ((this.concept!= null)&&(!this.concept.isEmpty())), ((that.concept!= null)&&(!that.concept.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); { Uri theUrl; theUrl = this.getUrl(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "url", theUrl), currentHashCode, theUrl, (this.url!= null)); } { Identifier theIdentifier; theIdentifier = this.getIdentifier(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "identifier", theIdentifier), currentHashCode, theIdentifier, (this.identifier!= null)); } { org.hl7.fhir.String theVersion; theVersion = this.getVersion(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "version", theVersion), currentHashCode, theVersion, (this.version!= null)); } { org.hl7.fhir.String theName; theName = this.getName(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "name", theName), currentHashCode, theName, (this.name!= null)); } { ConformanceResourceStatus theStatus; theStatus = this.getStatus(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "status", theStatus), currentHashCode, theStatus, (this.status!= null)); } { Boolean theExperimental; theExperimental = this.getExperimental(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "experimental", theExperimental), currentHashCode, theExperimental, (this.experimental!= null)); } { org.hl7.fhir.String thePublisher; thePublisher = this.getPublisher(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "publisher", thePublisher), currentHashCode, thePublisher, (this.publisher!= null)); } { List theContact; theContact = (((this.contact!= null)&&(!this.contact.isEmpty()))?this.getContact():null); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "contact", theContact), currentHashCode, theContact, ((this.contact!= null)&&(!this.contact.isEmpty()))); } { DateTime theDate; theDate = this.getDate(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "date", theDate), currentHashCode, theDate, (this.date!= null)); } { org.hl7.fhir.String theDescription; theDescription = this.getDescription(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "description", theDescription), currentHashCode, theDescription, (this.description!= null)); } { List theUseContext; theUseContext = (((this.useContext!= null)&&(!this.useContext.isEmpty()))?this.getUseContext():null); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "useContext", theUseContext), currentHashCode, theUseContext, ((this.useContext!= null)&&(!this.useContext.isEmpty()))); } { org.hl7.fhir.String theRequirements; theRequirements = this.getRequirements(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "requirements", theRequirements), currentHashCode, theRequirements, (this.requirements!= null)); } { org.hl7.fhir.String theCopyright; theCopyright = this.getCopyright(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "copyright", theCopyright), currentHashCode, theCopyright, (this.copyright!= null)); } { Boolean theCaseSensitive; theCaseSensitive = this.getCaseSensitive(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "caseSensitive", theCaseSensitive), currentHashCode, theCaseSensitive, (this.caseSensitive!= null)); } { Uri theValueSet; theValueSet = this.getValueSet(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "valueSet", theValueSet), currentHashCode, theValueSet, (this.valueSet!= null)); } { Boolean theCompositional; theCompositional = this.getCompositional(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "compositional", theCompositional), currentHashCode, theCompositional, (this.compositional!= null)); } { Boolean theVersionNeeded; theVersionNeeded = this.getVersionNeeded(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "versionNeeded", theVersionNeeded), currentHashCode, theVersionNeeded, (this.versionNeeded!= null)); } { CodeSystemContentMode theContent; theContent = this.getContent(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "content", theContent), currentHashCode, theContent, (this.content!= null)); } { UnsignedInt theCount; theCount = this.getCount(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "count", theCount), currentHashCode, theCount, (this.count!= null)); } { List theFilter; theFilter = (((this.filter!= null)&&(!this.filter.isEmpty()))?this.getFilter():null); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "filter", theFilter), currentHashCode, theFilter, ((this.filter!= null)&&(!this.filter.isEmpty()))); } { List theProperty; theProperty = (((this.property!= null)&&(!this.property.isEmpty()))?this.getProperty():null); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "property", theProperty), currentHashCode, theProperty, ((this.property!= null)&&(!this.property.isEmpty()))); } { List theConcept; theConcept = (((this.concept!= null)&&(!this.concept.isEmpty()))?this.getConcept():null); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "concept", theConcept), currentHashCode, theConcept, ((this.concept!= null)&&(!this.concept.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); { Uri theUrl; theUrl = this.getUrl(); strategy.appendField(locator, this, "url", buffer, theUrl, (this.url!= null)); } { Identifier theIdentifier; theIdentifier = this.getIdentifier(); strategy.appendField(locator, this, "identifier", buffer, theIdentifier, (this.identifier!= null)); } { org.hl7.fhir.String theVersion; theVersion = this.getVersion(); strategy.appendField(locator, this, "version", buffer, theVersion, (this.version!= null)); } { org.hl7.fhir.String theName; theName = this.getName(); strategy.appendField(locator, this, "name", buffer, theName, (this.name!= null)); } { ConformanceResourceStatus theStatus; theStatus = this.getStatus(); strategy.appendField(locator, this, "status", buffer, theStatus, (this.status!= null)); } { Boolean theExperimental; theExperimental = this.getExperimental(); strategy.appendField(locator, this, "experimental", buffer, theExperimental, (this.experimental!= null)); } { org.hl7.fhir.String thePublisher; thePublisher = this.getPublisher(); strategy.appendField(locator, this, "publisher", buffer, thePublisher, (this.publisher!= null)); } { List theContact; theContact = (((this.contact!= null)&&(!this.contact.isEmpty()))?this.getContact():null); strategy.appendField(locator, this, "contact", buffer, theContact, ((this.contact!= null)&&(!this.contact.isEmpty()))); } { DateTime theDate; theDate = this.getDate(); strategy.appendField(locator, this, "date", buffer, theDate, (this.date!= null)); } { org.hl7.fhir.String theDescription; theDescription = this.getDescription(); strategy.appendField(locator, this, "description", buffer, theDescription, (this.description!= null)); } { List theUseContext; theUseContext = (((this.useContext!= null)&&(!this.useContext.isEmpty()))?this.getUseContext():null); strategy.appendField(locator, this, "useContext", buffer, theUseContext, ((this.useContext!= null)&&(!this.useContext.isEmpty()))); } { org.hl7.fhir.String theRequirements; theRequirements = this.getRequirements(); strategy.appendField(locator, this, "requirements", buffer, theRequirements, (this.requirements!= null)); } { org.hl7.fhir.String theCopyright; theCopyright = this.getCopyright(); strategy.appendField(locator, this, "copyright", buffer, theCopyright, (this.copyright!= null)); } { Boolean theCaseSensitive; theCaseSensitive = this.getCaseSensitive(); strategy.appendField(locator, this, "caseSensitive", buffer, theCaseSensitive, (this.caseSensitive!= null)); } { Uri theValueSet; theValueSet = this.getValueSet(); strategy.appendField(locator, this, "valueSet", buffer, theValueSet, (this.valueSet!= null)); } { Boolean theCompositional; theCompositional = this.getCompositional(); strategy.appendField(locator, this, "compositional", buffer, theCompositional, (this.compositional!= null)); } { Boolean theVersionNeeded; theVersionNeeded = this.getVersionNeeded(); strategy.appendField(locator, this, "versionNeeded", buffer, theVersionNeeded, (this.versionNeeded!= null)); } { CodeSystemContentMode theContent; theContent = this.getContent(); strategy.appendField(locator, this, "content", buffer, theContent, (this.content!= null)); } { UnsignedInt theCount; theCount = this.getCount(); strategy.appendField(locator, this, "count", buffer, theCount, (this.count!= null)); } { List theFilter; theFilter = (((this.filter!= null)&&(!this.filter.isEmpty()))?this.getFilter():null); strategy.appendField(locator, this, "filter", buffer, theFilter, ((this.filter!= null)&&(!this.filter.isEmpty()))); } { List theProperty; theProperty = (((this.property!= null)&&(!this.property.isEmpty()))?this.getProperty():null); strategy.appendField(locator, this, "property", buffer, theProperty, ((this.property!= null)&&(!this.property.isEmpty()))); } { List theConcept; theConcept = (((this.concept!= null)&&(!this.concept.isEmpty()))?this.getConcept():null); strategy.appendField(locator, this, "concept", buffer, theConcept, ((this.concept!= null)&&(!this.concept.isEmpty()))); } return buffer; } public void setContact(List value) { this.contact = value; } public void setUseContext(List value) { this.useContext = value; } public void setFilter(List value) { this.filter = value; } public void setProperty(List value) { this.property = value; } public void setConcept(List value) { this.concept = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy