IRIS Form1099STotalAmtGrpType

IRIS > IRIS XML

Under Development
as of April 11, 2023

Tree


+- root: Form1099STotalAmtGrpType
|  +- totalReportedAmt: BigInteger
|  +- grossProceedsAmt: BigInteger
|  +- buyerRealEstateTaxAmt: BigInteger


Flattened

Form1099STotalAmtGrpType.totalReportedAmt
Form1099STotalAmtGrpType.grossProceedsAmt
Form1099STotalAmtGrpType.buyerRealEstateTaxAmt

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 S 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 S total amounts.</DescriptionTxt></Component>
 * </pre>
 * 
 * 
 * <p>Java class for Form1099STotalAmtGrpType complex type.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.
 * 
 * <pre>
 * <complexType name="Form1099STotalAmtGrpType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="TotalReportedAmt" type="{urn:us:gov:treasury:irs:ir}USAmountType" minOccurs="0"/>
 *         <element name="GrossProceedsAmt" type="{urn:us:gov:treasury:irs:ir}USAmountNNType" minOccurs="0"/>
 *         <element name="BuyerRealEstateTaxAmt" type="{urn:us:gov:treasury:irs:ir}USAmountNNType" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Form1099STotalAmtGrpType", namespace = "urn:us:gov:treasury:irs:ir", propOrder = {
    "totalReportedAmt",
    "grossProceedsAmt",
    "buyerRealEstateTaxAmt"
})
public class Form1099STotalAmtGrpType implements Equals2, ToString2
{

    @XmlElement(name = "TotalReportedAmt", namespace = "urn:us:gov:treasury:irs:ir")
    protected BigInteger totalReportedAmt;
    @XmlElement(name = "GrossProceedsAmt", namespace = "urn:us:gov:treasury:irs:ir")
    @XmlSchemaType(name = "nonNegativeInteger")
    protected BigInteger grossProceedsAmt;
    @XmlElement(name = "BuyerRealEstateTaxAmt", namespace = "urn:us:gov:treasury:irs:ir")
    @XmlSchemaType(name = "nonNegativeInteger")
    protected BigInteger buyerRealEstateTaxAmt;

    /**
     * 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 grossProceedsAmt property.
     * 
     * @return
     *     possible object is
     *     {@link BigInteger }
     *     
     */
    public BigInteger getGrossProceedsAmt() {
        return grossProceedsAmt;
    }

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

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

    /**
     * Sets the value of the buyerRealEstateTaxAmt property.
     * 
     * @param value
     *     allowed object is
     *     {@link BigInteger }
     *     
     */
    public void setBuyerRealEstateTaxAmt(BigInteger value) {
        this.buyerRealEstateTaxAmt = 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 theTotalReportedAmt;
            theTotalReportedAmt = this.getTotalReportedAmt();
            strategy.appendField(locator, this, "totalReportedAmt", buffer, theTotalReportedAmt, (this.totalReportedAmt!= null));
        }
        {
            BigInteger theGrossProceedsAmt;
            theGrossProceedsAmt = this.getGrossProceedsAmt();
            strategy.appendField(locator, this, "grossProceedsAmt", buffer, theGrossProceedsAmt, (this.grossProceedsAmt!= null));
        }
        {
            BigInteger theBuyerRealEstateTaxAmt;
            theBuyerRealEstateTaxAmt = this.getBuyerRealEstateTaxAmt();
            strategy.appendField(locator, this, "buyerRealEstateTaxAmt", buffer, theBuyerRealEstateTaxAmt, (this.buyerRealEstateTaxAmt!= 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 Form1099STotalAmtGrpType that = ((Form1099STotalAmtGrpType) object);
        {
            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 lhsGrossProceedsAmt;
            lhsGrossProceedsAmt = this.getGrossProceedsAmt();
            BigInteger rhsGrossProceedsAmt;
            rhsGrossProceedsAmt = that.getGrossProceedsAmt();
            if (!strategy.equals(LocatorUtils.property(thisLocator, "grossProceedsAmt", lhsGrossProceedsAmt), LocatorUtils.property(thatLocator, "grossProceedsAmt", rhsGrossProceedsAmt), lhsGrossProceedsAmt, rhsGrossProceedsAmt, (this.grossProceedsAmt!= null), (that.grossProceedsAmt!= null))) {
                return false;
            }
        }
        {
            BigInteger lhsBuyerRealEstateTaxAmt;
            lhsBuyerRealEstateTaxAmt = this.getBuyerRealEstateTaxAmt();
            BigInteger rhsBuyerRealEstateTaxAmt;
            rhsBuyerRealEstateTaxAmt = that.getBuyerRealEstateTaxAmt();
            if (!strategy.equals(LocatorUtils.property(thisLocator, "buyerRealEstateTaxAmt", lhsBuyerRealEstateTaxAmt), LocatorUtils.property(thatLocator, "buyerRealEstateTaxAmt", rhsBuyerRealEstateTaxAmt), lhsBuyerRealEstateTaxAmt, rhsBuyerRealEstateTaxAmt, (this.buyerRealEstateTaxAmt!= null), (that.buyerRealEstateTaxAmt!= 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.