org.hl7.fhir.TestScriptMetadata Maven / Gradle / Ivy
Show all versions of quick Show documentation
//
// 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.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;
/**
* TestScript is a resource that specifies a suite of tests against a FHIR server implementation to determine compliance against the FHIR specification.
*
* Java class for TestScript.Metadata complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TestScript.Metadata">
* <complexContent>
* <extension base="{http://hl7.org/fhir}BackboneElement">
* <sequence>
* <element name="link" type="{http://hl7.org/fhir}TestScript.Link" maxOccurs="unbounded" minOccurs="0"/>
* <element name="capability" type="{http://hl7.org/fhir}TestScript.Capability" maxOccurs="unbounded"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TestScript.Metadata", propOrder = {
"link",
"capability"
})
public class TestScriptMetadata
extends BackboneElement
implements Equals2, HashCode2, ToString2
{
protected List link;
@XmlElement(required = true)
protected List capability;
/**
* Gets the value of the link 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 link property.
*
*
* For example, to add a new item, do as follows:
*
* getLink().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TestScriptLink }
*
*
*/
public List getLink() {
if (link == null) {
link = new ArrayList();
}
return this.link;
}
/**
* Gets the value of the capability 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 capability property.
*
*
* For example, to add a new item, do as follows:
*
* getCapability().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TestScriptCapability }
*
*
*/
public List getCapability() {
if (capability == null) {
capability = new ArrayList();
}
return this.capability;
}
public TestScriptMetadata withLink(TestScriptLink... values) {
if (values!= null) {
for (TestScriptLink value: values) {
getLink().add(value);
}
}
return this;
}
public TestScriptMetadata withLink(Collection values) {
if (values!= null) {
getLink().addAll(values);
}
return this;
}
public TestScriptMetadata withCapability(TestScriptCapability... values) {
if (values!= null) {
for (TestScriptCapability value: values) {
getCapability().add(value);
}
}
return this;
}
public TestScriptMetadata withCapability(Collection values) {
if (values!= null) {
getCapability().addAll(values);
}
return this;
}
@Override
public TestScriptMetadata withModifierExtension(Extension... values) {
if (values!= null) {
for (Extension value: values) {
getModifierExtension().add(value);
}
}
return this;
}
@Override
public TestScriptMetadata withModifierExtension(Collection values) {
if (values!= null) {
getModifierExtension().addAll(values);
}
return this;
}
@Override
public TestScriptMetadata withExtension(Extension... values) {
if (values!= null) {
for (Extension value: values) {
getExtension().add(value);
}
}
return this;
}
@Override
public TestScriptMetadata withExtension(Collection values) {
if (values!= null) {
getExtension().addAll(values);
}
return this;
}
@Override
public TestScriptMetadata 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 TestScriptMetadata that = ((TestScriptMetadata) object);
{
List lhsLink;
lhsLink = (((this.link!= null)&&(!this.link.isEmpty()))?this.getLink():null);
List rhsLink;
rhsLink = (((that.link!= null)&&(!that.link.isEmpty()))?that.getLink():null);
if (!strategy.equals(LocatorUtils.property(thisLocator, "link", lhsLink), LocatorUtils.property(thatLocator, "link", rhsLink), lhsLink, rhsLink, ((this.link!= null)&&(!this.link.isEmpty())), ((that.link!= null)&&(!that.link.isEmpty())))) {
return false;
}
}
{
List lhsCapability;
lhsCapability = (((this.capability!= null)&&(!this.capability.isEmpty()))?this.getCapability():null);
List rhsCapability;
rhsCapability = (((that.capability!= null)&&(!that.capability.isEmpty()))?that.getCapability():null);
if (!strategy.equals(LocatorUtils.property(thisLocator, "capability", lhsCapability), LocatorUtils.property(thatLocator, "capability", rhsCapability), lhsCapability, rhsCapability, ((this.capability!= null)&&(!this.capability.isEmpty())), ((that.capability!= null)&&(!that.capability.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);
{
List theLink;
theLink = (((this.link!= null)&&(!this.link.isEmpty()))?this.getLink():null);
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "link", theLink), currentHashCode, theLink, ((this.link!= null)&&(!this.link.isEmpty())));
}
{
List theCapability;
theCapability = (((this.capability!= null)&&(!this.capability.isEmpty()))?this.getCapability():null);
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "capability", theCapability), currentHashCode, theCapability, ((this.capability!= null)&&(!this.capability.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);
{
List theLink;
theLink = (((this.link!= null)&&(!this.link.isEmpty()))?this.getLink():null);
strategy.appendField(locator, this, "link", buffer, theLink, ((this.link!= null)&&(!this.link.isEmpty())));
}
{
List theCapability;
theCapability = (((this.capability!= null)&&(!this.capability.isEmpty()))?this.getCapability():null);
strategy.appendField(locator, this, "capability", buffer, theCapability, ((this.capability!= null)&&(!this.capability.isEmpty())));
}
return buffer;
}
public void setLink(List value) {
this.link = value;
}
public void setCapability(List value) {
this.capability = value;
}
}