IRIS Form1099RTotalAmtGrpType

IRIS > IRIS XML

Under Development
as of April 11, 2023

Tree


+- root: Form1099RTotalAmtGrpType
|  +- federalIncomeTaxWithheldAmt: BigInteger
|  +- totalReportedAmt: BigInteger
|  +- grossDistributionAmt: BigInteger
|  +- irasepsimpleRothConversionAmt: BigInteger
|  +- taxableAmt: BigInteger
|  +- capitalGainAmt: BigInteger
|  +- employeeContributionsAmt: BigInteger
|  +- netUnrlzdSecuritiesApprcnAmt: BigInteger
|  +- otherDistributionAmt: BigInteger
|  +- totalEmployeeContributionsAmt: BigInteger
|  +- irrAllocatedAmt: BigInteger


Flattened

Form1099RTotalAmtGrpType.federalIncomeTaxWithheldAmt
Form1099RTotalAmtGrpType.totalReportedAmt
Form1099RTotalAmtGrpType.grossDistributionAmt
Form1099RTotalAmtGrpType.irasepsimpleRothConversionAmt
Form1099RTotalAmtGrpType.taxableAmt
Form1099RTotalAmtGrpType.capitalGainAmt
Form1099RTotalAmtGrpType.employeeContributionsAmt
Form1099RTotalAmtGrpType.netUnrlzdSecuritiesApprcnAmt
Form1099RTotalAmtGrpType.otherDistributionAmt
Form1099RTotalAmtGrpType.totalEmployeeContributionsAmt
Form1099RTotalAmtGrpType.irrAllocatedAmt

Java Code


package modelsiris;

import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import org.jvnet.jaxb2_commons.lang.Equals2;
import org.jvnet.jaxb2_commons.lang.EqualsStrategy2;
import org.jvnet.jaxb2_commons.lang.JAXBEqualsStrategy;
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;


/**
 * 
 * <pre>
 * <?xml version="1.0" encoding="UTF-8"?><Component xmlns="urn:us:gov:treasury:irs:ir" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><DictionaryEntryNm>Form 1099 R Total Amount Group Type</DictionaryEntryNm><MajorVersionNum>1</MajorVersionNum><MinorVersionNum>0</MinorVersionNum><VersionEffectiveBeginDt>2021-10-21</VersionEffectiveBeginDt><VersionDescriptionTxt>Initial version</VersionDescriptionTxt><DescriptionTxt>The content model for the form 1099 R total amounts.</DescriptionTxt></Component>
 * </pre>
 * 
 * 
 * <p>Java class for Form1099RTotalAmtGrpType complex type.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.
 * 
 * <pre>
 * <complexType name="Form1099RTotalAmtGrpType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="FederalIncomeTaxWithheldAmt" type="{urn:us:gov:treasury:irs:ir}USAmountNNType" minOccurs="0"/>
 *         <element name="TotalReportedAmt" type="{urn:us:gov:treasury:irs:ir}USAmountType" minOccurs="0"/>
 *         <element name="GrossDistributionAmt" type="{urn:us:gov:treasury:irs:ir}USAmountNNType" minOccurs="0"/>
 *         <element name="IRASEPSIMPLERothConversionAmt" type="{urn:us:gov:treasury:irs:ir}USAmountNNType" minOccurs="0"/>
 *         <element name="TaxableAmt" type="{urn:us:gov:treasury:irs:ir}USAmountNNType" minOccurs="0"/>
 *         <element name="CapitalGainAmt" type="{urn:us:gov:treasury:irs:ir}USAmountNNType" minOccurs="0"/>
 *         <element name="EmployeeContributionsAmt" type="{urn:us:gov:treasury:irs:ir}USAmountNNType" minOccurs="0"/>
 *         <element name="NetUnrlzdSecuritiesApprcnAmt" type="{urn:us:gov:treasury:irs:ir}USAmountNNType" minOccurs="0"/>
 *         <element name="OtherDistributionAmt" type="{urn:us:gov:treasury:irs:ir}USAmountNNType" minOccurs="0"/>
 *         <element name="TotalEmployeeContributionsAmt" type="{urn:us:gov:treasury:irs:ir}USAmountNNType" minOccurs="0"/>
 *         <element name="IRRAllocatedAmt" type="{urn:us:gov:treasury:irs:ir}USAmountNNType" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Form1099RTotalAmtGrpType", namespace = "urn:us:gov:treasury:irs:ir", propOrder = {
    "federalIncomeTaxWithheldAmt",
    "totalReportedAmt",
    "grossDistributionAmt",
    "irasepsimpleRothConversionAmt",
    "taxableAmt",
    "capitalGainAmt",
    "employeeContributionsAmt",
    "netUnrlzdSecuritiesApprcnAmt",
    "otherDistributionAmt",
    "totalEmployeeContributionsAmt",
    "irrAllocatedAmt"
})
public class Form1099RTotalAmtGrpType implements Equals2, ToString2
{

    @XmlElement(name = "FederalIncomeTaxWithheldAmt", namespace = "urn:us:gov:treasury:irs:ir")
    @XmlSchemaType(name = "nonNegativeInteger")
    protected BigInteger federalIncomeTaxWithheldAmt;
    @XmlElement(name = "TotalReportedAmt", namespace = "urn:us:gov:treasury:irs:ir")
    protected BigInteger totalReportedAmt;
    @XmlElement(name = "GrossDistributionAmt", namespace = "urn:us:gov:treasury:irs:ir")
    @XmlSchemaType(name = "nonNegativeInteger")
    protected BigInteger grossDistributionAmt;
    @XmlElement(name = "IRASEPSIMPLERothConversionAmt", namespace = "urn:us:gov:treasury:irs:ir")
    @XmlSchemaType(name = "nonNegativeInteger")
    protected BigInteger irasepsimpleRothConversionAmt;
    @XmlElement(name = "TaxableAmt", namespace = "urn:us:gov:treasury:irs:ir")
    @XmlSchemaType(name = "nonNegativeInteger")
    protected BigInteger taxableAmt;
    @XmlElement(name = "CapitalGainAmt", namespace = "urn:us:gov:treasury:irs:ir")
    @XmlSchemaType(name = "nonNegativeInteger")
    protected BigInteger capitalGainAmt;
    @XmlElement(name = "EmployeeContributionsAmt", namespace = "urn:us:gov:treasury:irs:ir")
    @XmlSchemaType(name = "nonNegativeInteger")
    protected BigInteger employeeContributionsAmt;
    @XmlElement(name = "NetUnrlzdSecuritiesApprcnAmt", namespace = "urn:us:gov:treasury:irs:ir")
    @XmlSchemaType(name = "nonNegativeInteger")
    protected BigInteger netUnrlzdSecuritiesApprcnAmt;
    @XmlElement(name = "OtherDistributionAmt", namespace = "urn:us:gov:treasury:irs:ir")
    @XmlSchemaType(name = "nonNegativeInteger")
    protected BigInteger otherDistributionAmt;
    @XmlElement(name = "TotalEmployeeContributionsAmt", namespace = "urn:us:gov:treasury:irs:ir")
    @XmlSchemaType(name = "nonNegativeInteger")
    protected BigInteger totalEmployeeContributionsAmt;
    @XmlElement(name = "IRRAllocatedAmt", namespace = "urn:us:gov:treasury:irs:ir")
    @XmlSchemaType(name = "nonNegativeInteger")
    protected BigInteger irrAllocatedAmt;

    /**
     * Gets the value of the federalIncomeTaxWithheldAmt property.
     * 
     * @return
     *     possible object is
     *     {@link BigInteger }
     *     
     */
    public BigInteger getFederalIncomeTaxWithheldAmt() {
        return federalIncomeTaxWithheldAmt;
    }

    /**
     * Sets the value of the federalIncomeTaxWithheldAmt property.
     * 
     * @param value
     *     allowed object is
     *     {@link BigInteger }
     *     
     */
    public void setFederalIncomeTaxWithheldAmt(BigInteger value) {
        this.federalIncomeTaxWithheldAmt = value;
    }

    /**
     * Gets the value of the totalReportedAmt property.
     * 
     * @return
     *     possible object is
     *     {@link BigInteger }
     *     
     */
    public BigInteger getTotalReportedAmt() {
        return totalReportedAmt;
    }

    /**
     * Sets the value of the totalReportedAmt property.
     * 
     * @param value
     *     allowed object is
     *     {@link BigInteger }
     *     
     */
    public void setTotalReportedAmt(BigInteger value) {
        this.totalReportedAmt = value;
    }

    /**
     * Gets the value of the grossDistributionAmt property.
     * 
     * @return
     *     possible object is
     *     {@link BigInteger }
     *     
     */
    public BigInteger getGrossDistributionAmt() {
        return grossDistributionAmt;
    }

    /**
     * Sets the value of the grossDistributionAmt property.
     * 
     * @param value
     *     allowed object is
     *     {@link BigInteger }
     *     
     */
    public void setGrossDistributionAmt(BigInteger value) {
        this.grossDistributionAmt = value;
    }

    /**
     * Gets the value of the irasepsimpleRothConversionAmt property.
     * 
     * @return
     *     possible object is
     *     {@link BigInteger }
     *     
     */
    public BigInteger getIRASEPSIMPLERothConversionAmt() {
        return irasepsimpleRothConversionAmt;
    }

    /**
     * Sets the value of the irasepsimpleRothConversionAmt property.
     * 
     * @param value
     *     allowed object is
     *     {@link BigInteger }
     *     
     */
    public void setIRASEPSIMPLERothConversionAmt(BigInteger value) {
        this.irasepsimpleRothConversionAmt = value;
    }

    /**
     * Gets the value of the taxableAmt property.
     * 
     * @return
     *     possible object is
     *     {@link BigInteger }
     *     
     */
    public BigInteger getTaxableAmt() {
        return taxableAmt;
    }

    /**
     * Sets the value of the taxableAmt property.
     * 
     * @param value
     *     allowed object is
     *     {@link BigInteger }
     *     
     */
    public void setTaxableAmt(BigInteger value) {
        this.taxableAmt = value;
    }

    /**
     * Gets the value of the capitalGainAmt property.
     * 
     * @return
     *     possible object is
     *     {@link BigInteger }
     *     
     */
    public BigInteger getCapitalGainAmt() {
        return capitalGainAmt;
    }

    /**
     * Sets the value of the capitalGainAmt property.
     * 
     * @param value
     *     allowed object is
     *     {@link BigInteger }
     *     
     */
    public void setCapitalGainAmt(BigInteger value) {
        this.capitalGainAmt = value;
    }

    /**
     * Gets the value of the employeeContributionsAmt property.
     * 
     * @return
     *     possible object is
     *     {@link BigInteger }
     *     
     */
    public BigInteger getEmployeeContributionsAmt() {
        return employeeContributionsAmt;
    }

    /**
     * Sets the value of the employeeContributionsAmt property.
     * 
     * @param value
     *     allowed object is
     *     {@link BigInteger }
     *     
     */
    public void setEmployeeContributionsAmt(BigInteger value) {
        this.employeeContributionsAmt = value;
    }

    /**
     * Gets the value of the netUnrlzdSecuritiesApprcnAmt property.
     * 
     * @return
     *     possible object is
     *     {@link BigInteger }
     *     
     */
    public BigInteger getNetUnrlzdSecuritiesApprcnAmt() {
        return netUnrlzdSecuritiesApprcnAmt;
    }

    /**
     * Sets the value of the netUnrlzdSecuritiesApprcnAmt property.
     * 
     * @param value
     *     allowed object is
     *     {@link BigInteger }
     *     
     */
    public void setNetUnrlzdSecuritiesApprcnAmt(BigInteger value) {
        this.netUnrlzdSecuritiesApprcnAmt = value;
    }

    /**
     * Gets the value of the otherDistributionAmt property.
     * 
     * @return
     *     possible object is
     *     {@link BigInteger }
     *     
     */
    public BigInteger getOtherDistributionAmt() {
        return otherDistributionAmt;
    }

    /**
     * Sets the value of the otherDistributionAmt property.
     * 
     * @param value
     *     allowed object is
     *     {@link BigInteger }
     *     
     */
    public void setOtherDistributionAmt(BigInteger value) {
        this.otherDistributionAmt = value;
    }

    /**
     * Gets the value of the totalEmployeeContributionsAmt property.
     * 
     * @return
     *     possible object is
     *     {@link BigInteger }
     *     
     */
    public BigInteger getTotalEmployeeContributionsAmt() {
        return totalEmployeeContributionsAmt;
    }

    /**
     * Sets the value of the totalEmployeeContributionsAmt property.
     * 
     * @param value
     *     allowed object is
     *     {@link BigInteger }
     *     
     */
    public void setTotalEmployeeContributionsAmt(BigInteger value) {
        this.totalEmployeeContributionsAmt = value;
    }

    /**
     * Gets the value of the irrAllocatedAmt property.
     * 
     * @return
     *     possible object is
     *     {@link BigInteger }
     *     
     */
    public BigInteger getIRRAllocatedAmt() {
        return irrAllocatedAmt;
    }

    /**
     * Sets the value of the irrAllocatedAmt property.
     * 
     * @param value
     *     allowed object is
     *     {@link BigInteger }
     *     
     */
    public void setIRRAllocatedAmt(BigInteger value) {
        this.irrAllocatedAmt = value;
    }

    public String toString() {
        final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE;
        final StringBuilder buffer = new StringBuilder();
        append(null, buffer, strategy);
        return buffer.toString();
    }

    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;
    }

    public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
        {
            BigInteger theFederalIncomeTaxWithheldAmt;
            theFederalIncomeTaxWithheldAmt = this.getFederalIncomeTaxWithheldAmt();
            strategy.appendField(locator, this, "federalIncomeTaxWithheldAmt", buffer, theFederalIncomeTaxWithheldAmt, (this.federalIncomeTaxWithheldAmt!= null));
        }
        {
            BigInteger theTotalReportedAmt;
            theTotalReportedAmt = this.getTotalReportedAmt();
            strategy.appendField(locator, this, "totalReportedAmt", buffer, theTotalReportedAmt, (this.totalReportedAmt!= null));
        }
        {
            BigInteger theGrossDistributionAmt;
            theGrossDistributionAmt = this.getGrossDistributionAmt();
            strategy.appendField(locator, this, "grossDistributionAmt", buffer, theGrossDistributionAmt, (this.grossDistributionAmt!= null));
        }
        {
            BigInteger theIRASEPSIMPLERothConversionAmt;
            theIRASEPSIMPLERothConversionAmt = this.getIRASEPSIMPLERothConversionAmt();
            strategy.appendField(locator, this, "irasepsimpleRothConversionAmt", buffer, theIRASEPSIMPLERothConversionAmt, (this.irasepsimpleRothConversionAmt!= null));
        }
        {
            BigInteger theTaxableAmt;
            theTaxableAmt = this.getTaxableAmt();
            strategy.appendField(locator, this, "taxableAmt", buffer, theTaxableAmt, (this.taxableAmt!= null));
        }
        {
            BigInteger theCapitalGainAmt;
            theCapitalGainAmt = this.getCapitalGainAmt();
            strategy.appendField(locator, this, "capitalGainAmt", buffer, theCapitalGainAmt, (this.capitalGainAmt!= null));
        }
        {
            BigInteger theEmployeeContributionsAmt;
            theEmployeeContributionsAmt = this.getEmployeeContributionsAmt();
            strategy.appendField(locator, this, "employeeContributionsAmt", buffer, theEmployeeContributionsAmt, (this.employeeContributionsAmt!= null));
        }
        {
            BigInteger theNetUnrlzdSecuritiesApprcnAmt;
            theNetUnrlzdSecuritiesApprcnAmt = this.getNetUnrlzdSecuritiesApprcnAmt();
            strategy.appendField(locator, this, "netUnrlzdSecuritiesApprcnAmt", buffer, theNetUnrlzdSecuritiesApprcnAmt, (this.netUnrlzdSecuritiesApprcnAmt!= null));
        }
        {
            BigInteger theOtherDistributionAmt;
            theOtherDistributionAmt = this.getOtherDistributionAmt();
            strategy.appendField(locator, this, "otherDistributionAmt", buffer, theOtherDistributionAmt, (this.otherDistributionAmt!= null));
        }
        {
            BigInteger theTotalEmployeeContributionsAmt;
            theTotalEmployeeContributionsAmt = this.getTotalEmployeeContributionsAmt();
            strategy.appendField(locator, this, "totalEmployeeContributionsAmt", buffer, theTotalEmployeeContributionsAmt, (this.totalEmployeeContributionsAmt!= null));
        }
        {
            BigInteger theIRRAllocatedAmt;
            theIRRAllocatedAmt = this.getIRRAllocatedAmt();
            strategy.appendField(locator, this, "irrAllocatedAmt", buffer, theIRRAllocatedAmt, (this.irrAllocatedAmt!= null));
        }
        return buffer;
    }

    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 Form1099RTotalAmtGrpType that = ((Form1099RTotalAmtGrpType) object);
        {
            BigInteger lhsFederalIncomeTaxWithheldAmt;
            lhsFederalIncomeTaxWithheldAmt = this.getFederalIncomeTaxWithheldAmt();
            BigInteger rhsFederalIncomeTaxWithheldAmt;
            rhsFederalIncomeTaxWithheldAmt = that.getFederalIncomeTaxWithheldAmt();
            if (!strategy.equals(LocatorUtils.property(thisLocator, "federalIncomeTaxWithheldAmt", lhsFederalIncomeTaxWithheldAmt), LocatorUtils.property(thatLocator, "federalIncomeTaxWithheldAmt", rhsFederalIncomeTaxWithheldAmt), lhsFederalIncomeTaxWithheldAmt, rhsFederalIncomeTaxWithheldAmt, (this.federalIncomeTaxWithheldAmt!= null), (that.federalIncomeTaxWithheldAmt!= null))) {
                return false;
            }
        }
        {
            BigInteger lhsTotalReportedAmt;
            lhsTotalReportedAmt = this.getTotalReportedAmt();
            BigInteger rhsTotalReportedAmt;
            rhsTotalReportedAmt = that.getTotalReportedAmt();
            if (!strategy.equals(LocatorUtils.property(thisLocator, "totalReportedAmt", lhsTotalReportedAmt), LocatorUtils.property(thatLocator, "totalReportedAmt", rhsTotalReportedAmt), lhsTotalReportedAmt, rhsTotalReportedAmt, (this.totalReportedAmt!= null), (that.totalReportedAmt!= null))) {
                return false;
            }
        }
        {
            BigInteger lhsGrossDistributionAmt;
            lhsGrossDistributionAmt = this.getGrossDistributionAmt();
            BigInteger rhsGrossDistributionAmt;
            rhsGrossDistributionAmt = that.getGrossDistributionAmt();
            if (!strategy.equals(LocatorUtils.property(thisLocator, "grossDistributionAmt", lhsGrossDistributionAmt), LocatorUtils.property(thatLocator, "grossDistributionAmt", rhsGrossDistributionAmt), lhsGrossDistributionAmt, rhsGrossDistributionAmt, (this.grossDistributionAmt!= null), (that.grossDistributionAmt!= null))) {
                return false;
            }
        }
        {
            BigInteger lhsIRASEPSIMPLERothConversionAmt;
            lhsIRASEPSIMPLERothConversionAmt = this.getIRASEPSIMPLERothConversionAmt();
            BigInteger rhsIRASEPSIMPLERothConversionAmt;
            rhsIRASEPSIMPLERothConversionAmt = that.getIRASEPSIMPLERothConversionAmt();
            if (!strategy.equals(LocatorUtils.property(thisLocator, "irasepsimpleRothConversionAmt", lhsIRASEPSIMPLERothConversionAmt), LocatorUtils.property(thatLocator, "irasepsimpleRothConversionAmt", rhsIRASEPSIMPLERothConversionAmt), lhsIRASEPSIMPLERothConversionAmt, rhsIRASEPSIMPLERothConversionAmt, (this.irasepsimpleRothConversionAmt!= null), (that.irasepsimpleRothConversionAmt!= null))) {
                return false;
            }
        }
        {
            BigInteger lhsTaxableAmt;
            lhsTaxableAmt = this.getTaxableAmt();
            BigInteger rhsTaxableAmt;
            rhsTaxableAmt = that.getTaxableAmt();
            if (!strategy.equals(LocatorUtils.property(thisLocator, "taxableAmt", lhsTaxableAmt), LocatorUtils.property(thatLocator, "taxableAmt", rhsTaxableAmt), lhsTaxableAmt, rhsTaxableAmt, (this.taxableAmt!= null), (that.taxableAmt!= null))) {
                return false;
            }
        }
        {
            BigInteger lhsCapitalGainAmt;
            lhsCapitalGainAmt = this.getCapitalGainAmt();
            BigInteger rhsCapitalGainAmt;
            rhsCapitalGainAmt = that.getCapitalGainAmt();
            if (!strategy.equals(LocatorUtils.property(thisLocator, "capitalGainAmt", lhsCapitalGainAmt), LocatorUtils.property(thatLocator, "capitalGainAmt", rhsCapitalGainAmt), lhsCapitalGainAmt, rhsCapitalGainAmt, (this.capitalGainAmt!= null), (that.capitalGainAmt!= null))) {
                return false;
            }
        }
        {
            BigInteger lhsEmployeeContributionsAmt;
            lhsEmployeeContributionsAmt = this.getEmployeeContributionsAmt();
            BigInteger rhsEmployeeContributionsAmt;
            rhsEmployeeContributionsAmt = that.getEmployeeContributionsAmt();
            if (!strategy.equals(LocatorUtils.property(thisLocator, "employeeContributionsAmt", lhsEmployeeContributionsAmt), LocatorUtils.property(thatLocator, "employeeContributionsAmt", rhsEmployeeContributionsAmt), lhsEmployeeContributionsAmt, rhsEmployeeContributionsAmt, (this.employeeContributionsAmt!= null), (that.employeeContributionsAmt!= null))) {
                return false;
            }
        }
        {
            BigInteger lhsNetUnrlzdSecuritiesApprcnAmt;
            lhsNetUnrlzdSecuritiesApprcnAmt = this.getNetUnrlzdSecuritiesApprcnAmt();
            BigInteger rhsNetUnrlzdSecuritiesApprcnAmt;
            rhsNetUnrlzdSecuritiesApprcnAmt = that.getNetUnrlzdSecuritiesApprcnAmt();
            if (!strategy.equals(LocatorUtils.property(thisLocator, "netUnrlzdSecuritiesApprcnAmt", lhsNetUnrlzdSecuritiesApprcnAmt), LocatorUtils.property(thatLocator, "netUnrlzdSecuritiesApprcnAmt", rhsNetUnrlzdSecuritiesApprcnAmt), lhsNetUnrlzdSecuritiesApprcnAmt, rhsNetUnrlzdSecuritiesApprcnAmt, (this.netUnrlzdSecuritiesApprcnAmt!= null), (that.netUnrlzdSecuritiesApprcnAmt!= null))) {
                return false;
            }
        }
        {
            BigInteger lhsOtherDistributionAmt;
            lhsOtherDistributionAmt = this.getOtherDistributionAmt();
            BigInteger rhsOtherDistributionAmt;
            rhsOtherDistributionAmt = that.getOtherDistributionAmt();
            if (!strategy.equals(LocatorUtils.property(thisLocator, "otherDistributionAmt", lhsOtherDistributionAmt), LocatorUtils.property(thatLocator, "otherDistributionAmt", rhsOtherDistributionAmt), lhsOtherDistributionAmt, rhsOtherDistributionAmt, (this.otherDistributionAmt!= null), (that.otherDistributionAmt!= null))) {
                return false;
            }
        }
        {
            BigInteger lhsTotalEmployeeContributionsAmt;
            lhsTotalEmployeeContributionsAmt = this.getTotalEmployeeContributionsAmt();
            BigInteger rhsTotalEmployeeContributionsAmt;
            rhsTotalEmployeeContributionsAmt = that.getTotalEmployeeContributionsAmt();
            if (!strategy.equals(LocatorUtils.property(thisLocator, "totalEmployeeContributionsAmt", lhsTotalEmployeeContributionsAmt), LocatorUtils.property(thatLocator, "totalEmployeeContributionsAmt", rhsTotalEmployeeContributionsAmt), lhsTotalEmployeeContributionsAmt, rhsTotalEmployeeContributionsAmt, (this.totalEmployeeContributionsAmt!= null), (that.totalEmployeeContributionsAmt!= null))) {
                return false;
            }
        }
        {
            BigInteger lhsIRRAllocatedAmt;
            lhsIRRAllocatedAmt = this.getIRRAllocatedAmt();
            BigInteger rhsIRRAllocatedAmt;
            rhsIRRAllocatedAmt = that.getIRRAllocatedAmt();
            if (!strategy.equals(LocatorUtils.property(thisLocator, "irrAllocatedAmt", lhsIRRAllocatedAmt), LocatorUtils.property(thatLocator, "irrAllocatedAmt", rhsIRRAllocatedAmt), lhsIRRAllocatedAmt, rhsIRRAllocatedAmt, (this.irrAllocatedAmt!= null), (that.irrAllocatedAmt!= null))) {
                return false;
            }
        }
        return true;
    }

    public boolean equals(Object object) {
        final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE;
        return equals(null, null, object, strategy);
    }

}

© Copyright 2023. All Rights Reserved.