net.finmath.smartcontract.product.xml.RelativeDates Maven / Gradle / Ivy
//
// 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.math.BigInteger;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* A type describing a set of dates defined as relative to another set of
* dates.
*
*
* Java class for RelativeDates complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RelativeDates">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}RelativeDateOffset">
* <sequence>
* <element name="periodSkip" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" minOccurs="0"/>
* <element name="scheduleBounds" type="{http://www.fpml.org/FpML-5/confirmation}DateRange" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RelativeDates", propOrder = {
"periodSkip",
"scheduleBounds"
})
public class RelativeDates
extends RelativeDateOffset
{
@XmlSchemaType(name = "positiveInteger")
protected BigInteger periodSkip;
protected DateRange scheduleBounds;
/**
* Gets the value of the periodSkip property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getPeriodSkip() {
return periodSkip;
}
/**
* Sets the value of the periodSkip property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setPeriodSkip(BigInteger value) {
this.periodSkip = value;
}
/**
* Gets the value of the scheduleBounds property.
*
* @return
* possible object is
* {@link DateRange }
*
*/
public DateRange getScheduleBounds() {
return scheduleBounds;
}
/**
* Sets the value of the scheduleBounds property.
*
* @param value
* allowed object is
* {@link DateRange }
*
*/
public void setScheduleBounds(DateRange value) {
this.scheduleBounds = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy