
org.hl7.fhir.ClaimProsthesis 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.12.02 at 03:09:39 PM MST
//
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;
/**
* A provider issued list of services and products provided, or to be provided, to a patient which is provided to an insurer for payment recovery.
*
* Java class for Claim.Prosthesis complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Claim.Prosthesis">
* <complexContent>
* <extension base="{http://hl7.org/fhir}BackboneElement">
* <sequence>
* <element name="initial" type="{http://hl7.org/fhir}boolean" minOccurs="0"/>
* <element name="priorDate" type="{http://hl7.org/fhir}date" minOccurs="0"/>
* <element name="priorMaterial" type="{http://hl7.org/fhir}Coding" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Claim.Prosthesis", propOrder = {
"initial",
"priorDate",
"priorMaterial"
})
public class ClaimProsthesis
extends BackboneElement
implements Equals2, HashCode2, ToString2
{
protected Boolean initial;
protected Date priorDate;
protected Coding priorMaterial;
/**
* Gets the value of the initial property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean getInitial() {
return initial;
}
/**
* Sets the value of the initial property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setInitial(Boolean value) {
this.initial = value;
}
/**
* Gets the value of the priorDate property.
*
* @return
* possible object is
* {@link Date }
*
*/
public Date getPriorDate() {
return priorDate;
}
/**
* Sets the value of the priorDate property.
*
* @param value
* allowed object is
* {@link Date }
*
*/
public void setPriorDate(Date value) {
this.priorDate = value;
}
/**
* Gets the value of the priorMaterial property.
*
* @return
* possible object is
* {@link Coding }
*
*/
public Coding getPriorMaterial() {
return priorMaterial;
}
/**
* Sets the value of the priorMaterial property.
*
* @param value
* allowed object is
* {@link Coding }
*
*/
public void setPriorMaterial(Coding value) {
this.priorMaterial = value;
}
public ClaimProsthesis withInitial(Boolean value) {
setInitial(value);
return this;
}
public ClaimProsthesis withPriorDate(Date value) {
setPriorDate(value);
return this;
}
public ClaimProsthesis withPriorMaterial(Coding value) {
setPriorMaterial(value);
return this;
}
@Override
public ClaimProsthesis withModifierExtension(Extension... values) {
if (values!= null) {
for (Extension value: values) {
getModifierExtension().add(value);
}
}
return this;
}
@Override
public ClaimProsthesis withModifierExtension(Collection values) {
if (values!= null) {
getModifierExtension().addAll(values);
}
return this;
}
@Override
public ClaimProsthesis withExtension(Extension... values) {
if (values!= null) {
for (Extension value: values) {
getExtension().add(value);
}
}
return this;
}
@Override
public ClaimProsthesis withExtension(Collection values) {
if (values!= null) {
getExtension().addAll(values);
}
return this;
}
@Override
public ClaimProsthesis 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 ClaimProsthesis that = ((ClaimProsthesis) object);
{
Boolean lhsInitial;
lhsInitial = this.getInitial();
Boolean rhsInitial;
rhsInitial = that.getInitial();
if (!strategy.equals(LocatorUtils.property(thisLocator, "initial", lhsInitial), LocatorUtils.property(thatLocator, "initial", rhsInitial), lhsInitial, rhsInitial, (this.initial!= null), (that.initial!= null))) {
return false;
}
}
{
Date lhsPriorDate;
lhsPriorDate = this.getPriorDate();
Date rhsPriorDate;
rhsPriorDate = that.getPriorDate();
if (!strategy.equals(LocatorUtils.property(thisLocator, "priorDate", lhsPriorDate), LocatorUtils.property(thatLocator, "priorDate", rhsPriorDate), lhsPriorDate, rhsPriorDate, (this.priorDate!= null), (that.priorDate!= null))) {
return false;
}
}
{
Coding lhsPriorMaterial;
lhsPriorMaterial = this.getPriorMaterial();
Coding rhsPriorMaterial;
rhsPriorMaterial = that.getPriorMaterial();
if (!strategy.equals(LocatorUtils.property(thisLocator, "priorMaterial", lhsPriorMaterial), LocatorUtils.property(thatLocator, "priorMaterial", rhsPriorMaterial), lhsPriorMaterial, rhsPriorMaterial, (this.priorMaterial!= null), (that.priorMaterial!= 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);
{
Boolean theInitial;
theInitial = this.getInitial();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "initial", theInitial), currentHashCode, theInitial, (this.initial!= null));
}
{
Date thePriorDate;
thePriorDate = this.getPriorDate();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "priorDate", thePriorDate), currentHashCode, thePriorDate, (this.priorDate!= null));
}
{
Coding thePriorMaterial;
thePriorMaterial = this.getPriorMaterial();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "priorMaterial", thePriorMaterial), currentHashCode, thePriorMaterial, (this.priorMaterial!= 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);
{
Boolean theInitial;
theInitial = this.getInitial();
strategy.appendField(locator, this, "initial", buffer, theInitial, (this.initial!= null));
}
{
Date thePriorDate;
thePriorDate = this.getPriorDate();
strategy.appendField(locator, this, "priorDate", buffer, thePriorDate, (this.priorDate!= null));
}
{
Coding thePriorMaterial;
thePriorMaterial = this.getPriorMaterial();
strategy.appendField(locator, this, "priorMaterial", buffer, thePriorMaterial, (this.priorMaterial!= null));
}
return buffer;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy