org.rutebanken.netex.model.ValidDuring_VersionStructure Maven / Gradle / Ivy
Show all versions of netex-java-model Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.09.21 at 10:53:23 AM CEST
//
package org.rutebanken.netex.model;
import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlList;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.rutebanken.netex.OmitNullsToStringStyle;
/**
* Java class for ValidDuring_VersionStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ValidDuring_VersionStructure">
* <complexContent>
* <extension base="{http://www.netex.org.uk/netex}ValidBetween_VersionStructure">
* <sequence>
* <group ref="{http://www.netex.org.uk/netex}ValidDuringGroup"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ValidDuring_VersionStructure", propOrder = {
"dayTypeRef",
"daysOfWeek",
"days",
"timebands"
})
@XmlSeeAlso({
ValidDuring.class,
SimpleAvailabilityCondition.class
})
public class ValidDuring_VersionStructure
extends ValidBetween_VersionStructure
{
@XmlElementRef(name = "DayTypeRef", namespace = "http://www.netex.org.uk/netex", type = JAXBElement.class, required = false)
protected JAXBElement extends DayTypeRefStructure> dayTypeRef;
@XmlList
@XmlElement(name = "DaysOfWeek")
protected List daysOfWeek;
@XmlElement(name = "Days")
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
protected String days;
protected Timebands_RelStructure timebands;
/**
* Gets the value of the dayTypeRef property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link FareDayTypeRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link DayTypeRefStructure }{@code >}
*
*/
public JAXBElement extends DayTypeRefStructure> getDayTypeRef() {
return dayTypeRef;
}
/**
* Sets the value of the dayTypeRef property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link FareDayTypeRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link DayTypeRefStructure }{@code >}
*
*/
public void setDayTypeRef(JAXBElement extends DayTypeRefStructure> value) {
this.dayTypeRef = value;
}
/**
* Gets the value of the daysOfWeek property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the daysOfWeek property.
*
*
* For example, to add a new item, do as follows:
*
* getDaysOfWeek().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DayOfWeekEnumeration }
*
*
*/
public List getDaysOfWeek() {
if (daysOfWeek == null) {
daysOfWeek = new ArrayList();
}
return this.daysOfWeek;
}
/**
* Gets the value of the days property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDays() {
return days;
}
/**
* Sets the value of the days property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDays(String value) {
this.days = value;
}
/**
* Gets the value of the timebands property.
*
* @return
* possible object is
* {@link Timebands_RelStructure }
*
*/
public Timebands_RelStructure getTimebands() {
return timebands;
}
/**
* Sets the value of the timebands property.
*
* @param value
* allowed object is
* {@link Timebands_RelStructure }
*
*/
public void setTimebands(Timebands_RelStructure value) {
this.timebands = value;
}
public ValidDuring_VersionStructure withDayTypeRef(JAXBElement extends DayTypeRefStructure> value) {
setDayTypeRef(value);
return this;
}
public ValidDuring_VersionStructure withDaysOfWeek(DayOfWeekEnumeration... values) {
if (values!= null) {
for (DayOfWeekEnumeration value: values) {
getDaysOfWeek().add(value);
}
}
return this;
}
public ValidDuring_VersionStructure withDaysOfWeek(Collection values) {
if (values!= null) {
getDaysOfWeek().addAll(values);
}
return this;
}
public ValidDuring_VersionStructure withDays(String value) {
setDays(value);
return this;
}
public ValidDuring_VersionStructure withTimebands(Timebands_RelStructure value) {
setTimebands(value);
return this;
}
@Override
public ValidDuring_VersionStructure withFromDate(OffsetDateTime value) {
setFromDate(value);
return this;
}
@Override
public ValidDuring_VersionStructure withToDate(OffsetDateTime value) {
setToDate(value);
return this;
}
@Override
public ValidDuring_VersionStructure withName(MultilingualString value) {
setName(value);
return this;
}
@Override
public ValidDuring_VersionStructure withDescription(MultilingualString value) {
setDescription(value);
return this;
}
@Override
public ValidDuring_VersionStructure withConditionedObjectRef(VersionOfObjectRefStructure value) {
setConditionedObjectRef(value);
return this;
}
@Override
public ValidDuring_VersionStructure withWithConditionRef(ValidityConditionRefStructure value) {
setWithConditionRef(value);
return this;
}
@Override
public ValidDuring_VersionStructure withKeyList(KeyListStructure value) {
setKeyList(value);
return this;
}
@Override
public ValidDuring_VersionStructure withExtensions(ExtensionsStructure value) {
setExtensions(value);
return this;
}
@Override
public ValidDuring_VersionStructure withBrandingRef(BrandingRefStructure value) {
setBrandingRef(value);
return this;
}
@Override
public ValidDuring_VersionStructure withAlternativeTexts(AlternativeTexts_RelStructure value) {
setAlternativeTexts(value);
return this;
}
@Override
public ValidDuring_VersionStructure withResponsibilitySetRef(String value) {
setResponsibilitySetRef(value);
return this;
}
@Override
public ValidDuring_VersionStructure withValidityConditions(ValidityConditions_RelStructure value) {
setValidityConditions(value);
return this;
}
@Override
public ValidDuring_VersionStructure withValidBetween(ValidBetween... values) {
if (values!= null) {
for (ValidBetween value: values) {
getValidBetween().add(value);
}
}
return this;
}
@Override
public ValidDuring_VersionStructure withValidBetween(Collection values) {
if (values!= null) {
getValidBetween().addAll(values);
}
return this;
}
@Override
public ValidDuring_VersionStructure withDataSourceRef(String value) {
setDataSourceRef(value);
return this;
}
@Override
public ValidDuring_VersionStructure withCreated(OffsetDateTime value) {
setCreated(value);
return this;
}
@Override
public ValidDuring_VersionStructure withChanged(OffsetDateTime value) {
setChanged(value);
return this;
}
@Override
public ValidDuring_VersionStructure withModification(ModificationEnumeration value) {
setModification(value);
return this;
}
@Override
public ValidDuring_VersionStructure withVersion(String value) {
setVersion(value);
return this;
}
@Override
public ValidDuring_VersionStructure withStatus_BasicModificationDetailsGroup(StatusEnumeration value) {
setStatus_BasicModificationDetailsGroup(value);
return this;
}
@Override
public ValidDuring_VersionStructure withDerivedFromVersionRef_BasicModificationDetailsGroup(String value) {
setDerivedFromVersionRef_BasicModificationDetailsGroup(value);
return this;
}
@Override
public ValidDuring_VersionStructure withCompatibleWithVersionFrameVersionRef(String value) {
setCompatibleWithVersionFrameVersionRef(value);
return this;
}
@Override
public ValidDuring_VersionStructure withDerivedFromObjectRef(String value) {
setDerivedFromObjectRef(value);
return this;
}
@Override
public ValidDuring_VersionStructure withNameOfClass(String value) {
setNameOfClass(value);
return this;
}
@Override
public ValidDuring_VersionStructure withId(String value) {
setId(value);
return this;
}
/**
* Generates a String representation of the contents of this type.
* This is an extension method, produced by the 'ts' xjc plugin
*
*/
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this, OmitNullsToStringStyle.INSTANCE);
}
}