com.prowidesoftware.swift.model.mx.dic.DatePeriodSearch1Choice Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pw-iso20022 Show documentation
Show all versions of pw-iso20022 Show documentation
Prowide Library for ISO 20022 messages
package com.prowidesoftware.swift.model.mx.dic;
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 javax.xml.datatype.XMLGregorianCalendar;
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;
/**
* Choice between search criteria based on dates and time ranges.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DatePeriodSearch1Choice", propOrder = {
"frDt",
"toDt",
"frToDt",
"eqDt",
"neqDt"
})
public class DatePeriodSearch1Choice {
@XmlElement(name = "FrDt")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frDt;
@XmlElement(name = "ToDt")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar toDt;
@XmlElement(name = "FrToDt")
protected DatePeriod2 frToDt;
@XmlElement(name = "EQDt")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar eqDt;
@XmlElement(name = "NEQDt")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar neqDt;
/**
* Gets the value of the frDt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getFrDt() {
return frDt;
}
/**
* Sets the value of the frDt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public DatePeriodSearch1Choice setFrDt(XMLGregorianCalendar value) {
this.frDt = value;
return this;
}
/**
* Gets the value of the toDt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getToDt() {
return toDt;
}
/**
* Sets the value of the toDt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public DatePeriodSearch1Choice setToDt(XMLGregorianCalendar value) {
this.toDt = value;
return this;
}
/**
* Gets the value of the frToDt property.
*
* @return
* possible object is
* {@link DatePeriod2 }
*
*/
public DatePeriod2 getFrToDt() {
return frToDt;
}
/**
* Sets the value of the frToDt property.
*
* @param value
* allowed object is
* {@link DatePeriod2 }
*
*/
public DatePeriodSearch1Choice setFrToDt(DatePeriod2 value) {
this.frToDt = value;
return this;
}
/**
* Gets the value of the eqDt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getEQDt() {
return eqDt;
}
/**
* Sets the value of the eqDt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public DatePeriodSearch1Choice setEQDt(XMLGregorianCalendar value) {
this.eqDt = value;
return this;
}
/**
* Gets the value of the neqDt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getNEQDt() {
return neqDt;
}
/**
* Sets the value of the neqDt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public DatePeriodSearch1Choice setNEQDt(XMLGregorianCalendar value) {
this.neqDt = value;
return this;
}
@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);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy