de.focus_shift.jollyday.jaxb.mapping.RelativeToFixed Maven / Gradle / Ivy
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2
// 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.07.15 at 09:27:16 AM UTC
//
package de.focus_shift.jollyday.jaxb.mapping;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for RelativeToFixed complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RelativeToFixed">
* <complexContent>
* <extension base="{https://focus_shift.de/jollyday/schema/holiday}Holiday">
* <sequence>
* <choice>
* <element name="Days" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="Weekday" type="{https://focus_shift.de/jollyday/schema/holiday}Weekday" minOccurs="0"/>
* </choice>
* <element name="When" type="{https://focus_shift.de/jollyday/schema/holiday}When"/>
* <element name="Date" type="{https://focus_shift.de/jollyday/schema/holiday}Fixed"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RelativeToFixed", propOrder = {
"days",
"weekday",
"when",
"date"
})
public class RelativeToFixed
extends Holiday
{
@XmlElement(name = "Days")
protected Integer days;
@XmlElement(name = "Weekday")
@XmlSchemaType(name = "string")
protected Weekday weekday;
@XmlElement(name = "When", required = true)
@XmlSchemaType(name = "string")
protected When when;
@XmlElement(name = "Date", required = true)
protected Fixed date;
/**
* Gets the value of the days property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getDays() {
return days;
}
/**
* Sets the value of the days property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setDays(Integer value) {
this.days = value;
}
/**
* Gets the value of the weekday property.
*
* @return
* possible object is
* {@link Weekday }
*
*/
public Weekday getWeekday() {
return weekday;
}
/**
* Sets the value of the weekday property.
*
* @param value
* allowed object is
* {@link Weekday }
*
*/
public void setWeekday(Weekday value) {
this.weekday = value;
}
/**
* Gets the value of the when property.
*
* @return
* possible object is
* {@link When }
*
*/
public When getWhen() {
return when;
}
/**
* Sets the value of the when property.
*
* @param value
* allowed object is
* {@link When }
*
*/
public void setWhen(When value) {
this.when = value;
}
/**
* Gets the value of the date property.
*
* @return
* possible object is
* {@link Fixed }
*
*/
public Fixed getDate() {
return date;
}
/**
* Sets the value of the date property.
*
* @param value
* allowed object is
* {@link Fixed }
*
*/
public void setDate(Fixed value) {
this.date = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy