Class DateRange

java.lang.Object
net.finmath.smartcontract.product.xml.DateRange
Direct Known Subclasses:
BusinessDateRange

public class DateRange extends Object
A type defining a contiguous series of calendar dates. The date range is defined as all the dates between and including the first and the last date. The first date must fall before the last date.

Java class for DateRange complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="DateRange">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="unadjustedFirstDate" type="{http://www.w3.org/2001/XMLSchema}date"/>
         <element name="unadjustedLastDate" type="{http://www.w3.org/2001/XMLSchema}date"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>