Tree
+- root: Form1099LTCTotalAmtGrpType
| +- totalReportedAmt: BigInteger
| +- grossLTCBenefitPaidAmt: BigInteger
| +- acceleratedDeathBenefitPaidAmt: BigInteger
Flattened
Form1099LTCTotalAmtGrpType.totalReportedAmt
Form1099LTCTotalAmtGrpType.grossLTCBenefitPaidAmt
Form1099LTCTotalAmtGrpType.acceleratedDeathBenefitPaidAmt
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 LTC 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 LTC total amounts.</DescriptionTxt></Component>
* </pre>
*
*
* <p>Java class for Form1099LTCTotalAmtGrpType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="Form1099LTCTotalAmtGrpType">
* <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="GrossLTCBenefitPaidAmt" type="{urn:us:gov:treasury:irs:ir}USAmountNNType" minOccurs="0"/>
* <element name="AcceleratedDeathBenefitPaidAmt" type="{urn:us:gov:treasury:irs:ir}USAmountNNType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Form1099LTCTotalAmtGrpType", namespace = "urn:us:gov:treasury:irs:ir", propOrder = {
"totalReportedAmt",
"grossLTCBenefitPaidAmt",
"acceleratedDeathBenefitPaidAmt"
})
public class Form1099LTCTotalAmtGrpType implements Equals2, ToString2
{
@XmlElement(name = "TotalReportedAmt", namespace = "urn:us:gov:treasury:irs:ir")
protected BigInteger totalReportedAmt;
@XmlElement(name = "GrossLTCBenefitPaidAmt", namespace = "urn:us:gov:treasury:irs:ir")
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger grossLTCBenefitPaidAmt;
@XmlElement(name = "AcceleratedDeathBenefitPaidAmt", namespace = "urn:us:gov:treasury:irs:ir")
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger acceleratedDeathBenefitPaidAmt;
/**
* 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 grossLTCBenefitPaidAmt property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getGrossLTCBenefitPaidAmt() {
return grossLTCBenefitPaidAmt;
}
/**
* Sets the value of the grossLTCBenefitPaidAmt property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setGrossLTCBenefitPaidAmt(BigInteger value) {
this.grossLTCBenefitPaidAmt = value;
}
/**
* Gets the value of the acceleratedDeathBenefitPaidAmt property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getAcceleratedDeathBenefitPaidAmt() {
return acceleratedDeathBenefitPaidAmt;
}
/**
* Sets the value of the acceleratedDeathBenefitPaidAmt property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setAcceleratedDeathBenefitPaidAmt(BigInteger value) {
this.acceleratedDeathBenefitPaidAmt = 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 theGrossLTCBenefitPaidAmt;
theGrossLTCBenefitPaidAmt = this.getGrossLTCBenefitPaidAmt();
strategy.appendField(locator, this, "grossLTCBenefitPaidAmt", buffer, theGrossLTCBenefitPaidAmt, (this.grossLTCBenefitPaidAmt!= null));
}
{
BigInteger theAcceleratedDeathBenefitPaidAmt;
theAcceleratedDeathBenefitPaidAmt = this.getAcceleratedDeathBenefitPaidAmt();
strategy.appendField(locator, this, "acceleratedDeathBenefitPaidAmt", buffer, theAcceleratedDeathBenefitPaidAmt, (this.acceleratedDeathBenefitPaidAmt!= 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 Form1099LTCTotalAmtGrpType that = ((Form1099LTCTotalAmtGrpType) 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 lhsGrossLTCBenefitPaidAmt;
lhsGrossLTCBenefitPaidAmt = this.getGrossLTCBenefitPaidAmt();
BigInteger rhsGrossLTCBenefitPaidAmt;
rhsGrossLTCBenefitPaidAmt = that.getGrossLTCBenefitPaidAmt();
if (!strategy.equals(LocatorUtils.property(thisLocator, "grossLTCBenefitPaidAmt", lhsGrossLTCBenefitPaidAmt), LocatorUtils.property(thatLocator, "grossLTCBenefitPaidAmt", rhsGrossLTCBenefitPaidAmt), lhsGrossLTCBenefitPaidAmt, rhsGrossLTCBenefitPaidAmt, (this.grossLTCBenefitPaidAmt!= null), (that.grossLTCBenefitPaidAmt!= null))) {
return false;
}
}
{
BigInteger lhsAcceleratedDeathBenefitPaidAmt;
lhsAcceleratedDeathBenefitPaidAmt = this.getAcceleratedDeathBenefitPaidAmt();
BigInteger rhsAcceleratedDeathBenefitPaidAmt;
rhsAcceleratedDeathBenefitPaidAmt = that.getAcceleratedDeathBenefitPaidAmt();
if (!strategy.equals(LocatorUtils.property(thisLocator, "acceleratedDeathBenefitPaidAmt", lhsAcceleratedDeathBenefitPaidAmt), LocatorUtils.property(thatLocator, "acceleratedDeathBenefitPaidAmt", rhsAcceleratedDeathBenefitPaidAmt), lhsAcceleratedDeathBenefitPaidAmt, rhsAcceleratedDeathBenefitPaidAmt, (this.acceleratedDeathBenefitPaidAmt!= null), (that.acceleratedDeathBenefitPaidAmt!= null))) {
return false;
}
}
return true;
}
public boolean equals(Object object) {
final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE;
return equals(null, null, object, strategy);
}
}