de.jollyday.config.Fixed Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jollyday Show documentation
Show all versions of jollyday Show documentation
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).
//
// 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.XmlType;
/**
* Java-Klasse für Fixed complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="Fixed">
* <complexContent>
* <extension base="{http://www.example.org/Holiday}MoveableHoliday">
* <attribute name="month" type="{http://www.example.org/Holiday}Month" />
* <attribute name="day">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
* <minInclusive value="1"/>
* <maxInclusive value="31"/>
* </restriction>
* </simpleType>
* </attribute>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Fixed")
public class Fixed
extends MoveableHoliday
{
@XmlAttribute(name = "month")
protected Month month;
@XmlAttribute(name = "day")
protected Integer day;
/**
* Ruft den Wert der month-Eigenschaft ab.
*
* @return
* possible object is
* {@link Month }
*
*/
public Month getMonth() {
return month;
}
/**
* Legt den Wert der month-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Month }
*
*/
public void setMonth(Month value) {
this.month = value;
}
/**
* Ruft den Wert der day-Eigenschaft ab.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getDay() {
return day;
}
/**
* Legt den Wert der day-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setDay(Integer value) {
this.day = value;
}
}