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

org.hl7.elm_modelinfo.r1.RelationshipInfo Maven / Gradle / Ivy

//
// 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.11.06 at 08:02:20 AM MST 
//


package org.hl7.elm_modelinfo.r1;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
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;


/**
 * Defines the relationship of a class to the context.
 * 
 * 

Java class for RelationshipInfo complex type. * *

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

 * <complexType name="RelationshipInfo">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="context" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="relatedKeyElement" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RelationshipInfo", namespace = "urn:hl7-org:elm-modelinfo:r1") public class RelationshipInfo implements Equals2, HashCode2, ToString2 { @XmlAttribute(name = "context", required = true) protected String context; @XmlAttribute(name = "relatedKeyElement") protected String relatedKeyElement; /** * Gets the value of the context property. * * @return * possible object is * {@link String } * */ public String getContext() { return context; } /** * Sets the value of the context property. * * @param value * allowed object is * {@link String } * */ public void setContext(String value) { this.context = value; } /** * Gets the value of the relatedKeyElement property. * * @return * possible object is * {@link String } * */ public String getRelatedKeyElement() { return relatedKeyElement; } /** * Sets the value of the relatedKeyElement property. * * @param value * allowed object is * {@link String } * */ public void setRelatedKeyElement(String value) { this.relatedKeyElement = value; } public RelationshipInfo withContext(String value) { setContext(value); return this; } public RelationshipInfo withRelatedKeyElement(String value) { setRelatedKeyElement(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; } final RelationshipInfo that = ((RelationshipInfo) object); { String lhsContext; lhsContext = this.getContext(); String rhsContext; rhsContext = that.getContext(); if (!strategy.equals(LocatorUtils.property(thisLocator, "context", lhsContext), LocatorUtils.property(thatLocator, "context", rhsContext), lhsContext, rhsContext, (this.context!= null), (that.context!= null))) { return false; } } { String lhsRelatedKeyElement; lhsRelatedKeyElement = this.getRelatedKeyElement(); String rhsRelatedKeyElement; rhsRelatedKeyElement = that.getRelatedKeyElement(); if (!strategy.equals(LocatorUtils.property(thisLocator, "relatedKeyElement", lhsRelatedKeyElement), LocatorUtils.property(thatLocator, "relatedKeyElement", rhsRelatedKeyElement), lhsRelatedKeyElement, rhsRelatedKeyElement, (this.relatedKeyElement!= null), (that.relatedKeyElement!= 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 = 1; { String theContext; theContext = this.getContext(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "context", theContext), currentHashCode, theContext, (this.context!= null)); } { String theRelatedKeyElement; theRelatedKeyElement = this.getRelatedKeyElement(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "relatedKeyElement", theRelatedKeyElement), currentHashCode, theRelatedKeyElement, (this.relatedKeyElement!= null)); } return currentHashCode; } @Override public int hashCode() { final HashCodeStrategy2 strategy = JAXBHashCodeStrategy.getInstance(); return this.hashCode(null, strategy); } @Override public 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) { { String theContext; theContext = this.getContext(); strategy.appendField(locator, this, "context", buffer, theContext, (this.context!= null)); } { String theRelatedKeyElement; theRelatedKeyElement = this.getRelatedKeyElement(); strategy.appendField(locator, this, "relatedKeyElement", buffer, theRelatedKeyElement, (this.relatedKeyElement!= null)); } return buffer; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy