net.finmath.smartcontract.product.xml.RelativeDateSequence Maven / Gradle / Ivy
Show all versions of finmath-smart-derivative-contract Show documentation
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.12.05 at 10:53:57 AM CET
//
package net.finmath.smartcontract.product.xml;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* A type describing a date when this date is defined in reference to another
* date through one or several date offsets.
*
*
* Java class for RelativeDateSequence complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RelativeDateSequence">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="dateRelativeTo" type="{http://www.fpml.org/FpML-5/confirmation}DateReference"/>
* <element name="dateOffset" type="{http://www.fpml.org/FpML-5/confirmation}DateOffset" maxOccurs="unbounded"/>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}BusinessCentersOrReference.model" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RelativeDateSequence", propOrder = {
"dateRelativeTo",
"dateOffset",
"businessCentersReference",
"businessCenters"
})
public class RelativeDateSequence {
@XmlElement(required = true)
protected DateReference dateRelativeTo;
@XmlElement(required = true)
protected List dateOffset;
protected BusinessCentersReference businessCentersReference;
protected BusinessCenters businessCenters;
/**
* Gets the value of the dateRelativeTo property.
*
* @return
* possible object is
* {@link DateReference }
*
*/
public DateReference getDateRelativeTo() {
return dateRelativeTo;
}
/**
* Sets the value of the dateRelativeTo property.
*
* @param value
* allowed object is
* {@link DateReference }
*
*/
public void setDateRelativeTo(DateReference value) {
this.dateRelativeTo = value;
}
/**
* Gets the value of the dateOffset 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 Jakarta XML Binding object.
* This is why there is not a set
method for the dateOffset property.
*
*
* For example, to add a new item, do as follows:
*
* getDateOffset().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DateOffset }
*
*
*/
public List getDateOffset() {
if (dateOffset == null) {
dateOffset = new ArrayList();
}
return this.dateOffset;
}
/**
* Gets the value of the businessCentersReference property.
*
* @return
* possible object is
* {@link BusinessCentersReference }
*
*/
public BusinessCentersReference getBusinessCentersReference() {
return businessCentersReference;
}
/**
* Sets the value of the businessCentersReference property.
*
* @param value
* allowed object is
* {@link BusinessCentersReference }
*
*/
public void setBusinessCentersReference(BusinessCentersReference value) {
this.businessCentersReference = value;
}
/**
* Gets the value of the businessCenters property.
*
* @return
* possible object is
* {@link BusinessCenters }
*
*/
public BusinessCenters getBusinessCenters() {
return businessCenters;
}
/**
* Sets the value of the businessCenters property.
*
* @param value
* allowed object is
* {@link BusinessCenters }
*
*/
public void setBusinessCenters(BusinessCenters value) {
this.businessCenters = value;
}
}