
com.prowidesoftware.swift.model.mx.dic.FundDetailedConfirmedCashForecastReport3 Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
/**
* Information about a cash forecast report.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FundDetailedConfirmedCashForecastReport3", propOrder = {
"fndOrSubFndDtls",
"fndCshFcstDtls",
"cnsltdNetCshFcst",
"xtnsn"
})
public class FundDetailedConfirmedCashForecastReport3 {
@XmlElement(name = "FndOrSubFndDtls")
protected Fund4 fndOrSubFndDtls;
@XmlElement(name = "FndCshFcstDtls", required = true)
protected List fndCshFcstDtls;
@XmlElement(name = "CnsltdNetCshFcst")
protected NetCashForecast3 cnsltdNetCshFcst;
@XmlElement(name = "Xtnsn")
protected List xtnsn;
/**
* Gets the value of the fndOrSubFndDtls property.
*
* @return
* possible object is
* {@link Fund4 }
*
*/
public Fund4 getFndOrSubFndDtls() {
return fndOrSubFndDtls;
}
/**
* Sets the value of the fndOrSubFndDtls property.
*
* @param value
* allowed object is
* {@link Fund4 }
*
*/
public FundDetailedConfirmedCashForecastReport3 setFndOrSubFndDtls(Fund4 value) {
this.fndOrSubFndDtls = value;
return this;
}
/**
* Gets the value of the fndCshFcstDtls property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the fndCshFcstDtls property.
*
*
* For example, to add a new item, do as follows:
*
* getFndCshFcstDtls().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link FundCashForecast6 }
*
*
*/
public List getFndCshFcstDtls() {
if (fndCshFcstDtls == null) {
fndCshFcstDtls = new ArrayList();
}
return this.fndCshFcstDtls;
}
/**
* Gets the value of the cnsltdNetCshFcst property.
*
* @return
* possible object is
* {@link NetCashForecast3 }
*
*/
public NetCashForecast3 getCnsltdNetCshFcst() {
return cnsltdNetCshFcst;
}
/**
* Sets the value of the cnsltdNetCshFcst property.
*
* @param value
* allowed object is
* {@link NetCashForecast3 }
*
*/
public FundDetailedConfirmedCashForecastReport3 setCnsltdNetCshFcst(NetCashForecast3 value) {
this.cnsltdNetCshFcst = value;
return this;
}
/**
* Gets the value of the xtnsn property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the xtnsn property.
*
*
* For example, to add a new item, do as follows:
*
* getXtnsn().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Extension1 }
*
*
*/
public List getXtnsn() {
if (xtnsn == null) {
xtnsn = new ArrayList();
}
return this.xtnsn;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE);
}
@Override
public boolean equals(Object that) {
return EqualsBuilder.reflectionEquals(this, that);
}
@Override
public int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
}
/**
* Adds a new item to the fndCshFcstDtls list.
* @see #getFndCshFcstDtls()
*
*/
public FundDetailedConfirmedCashForecastReport3 addFndCshFcstDtls(FundCashForecast6 fndCshFcstDtls) {
getFndCshFcstDtls().add(fndCshFcstDtls);
return this;
}
/**
* Adds a new item to the xtnsn list.
* @see #getXtnsn()
*
*/
public FundDetailedConfirmedCashForecastReport3 addXtnsn(Extension1 xtnsn) {
getXtnsn().add(xtnsn);
return this;
}
}