All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.jollyday.config.FixedWeekdayBetweenFixed Maven / Gradle / Ivy

Go to download

This API determines the holidays for a given year, country/name and eventually state/region. The holiday data is stored in XML files (one for each country) and will be read from the classpath. You can provide your own holiday calendar XML file or use any of the provided ones. Currently there are 63 countries supported like the following: United States, most european countries, Russia, India, Australia. Besides those there will be more special calendars like currently existing NYSE calendar (New York Stock Exchange).

There is a newer version: 0.5.10
Show newest version
//
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 generiert 
// Siehe http://java.sun.com/xml/jaxb 
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. 
// Generiert: 2018.06.08 um 10:01:21 PM CEST 
//


package de.jollyday.config;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java-Klasse für FixedWeekdayBetweenFixed complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="FixedWeekdayBetweenFixed">
 *   <complexContent>
 *     <extension base="{http://www.example.org/Holiday}Holiday">
 *       <sequence>
 *         <element name="from" type="{http://www.example.org/Holiday}Fixed"/>
 *         <element name="to" type="{http://www.example.org/Holiday}Fixed"/>
 *       </sequence>
 *       <attribute name="weekday" type="{http://www.example.org/Holiday}Weekday" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FixedWeekdayBetweenFixed", propOrder = { "from", "to" }) public class FixedWeekdayBetweenFixed extends Holiday { @XmlElement(required = true) protected Fixed from; @XmlElement(required = true) protected Fixed to; @XmlAttribute(name = "weekday") protected Weekday weekday; /** * Ruft den Wert der from-Eigenschaft ab. * * @return * possible object is * {@link Fixed } * */ public Fixed getFrom() { return from; } /** * Legt den Wert der from-Eigenschaft fest. * * @param value * allowed object is * {@link Fixed } * */ public void setFrom(Fixed value) { this.from = value; } /** * Ruft den Wert der to-Eigenschaft ab. * * @return * possible object is * {@link Fixed } * */ public Fixed getTo() { return to; } /** * Legt den Wert der to-Eigenschaft fest. * * @param value * allowed object is * {@link Fixed } * */ public void setTo(Fixed value) { this.to = value; } /** * Ruft den Wert der weekday-Eigenschaft ab. * * @return * possible object is * {@link Weekday } * */ public Weekday getWeekday() { return weekday; } /** * Legt den Wert der weekday-Eigenschaft fest. * * @param value * allowed object is * {@link Weekday } * */ public void setWeekday(Weekday value) { this.weekday = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy