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

org.rutebanken.netex.model.ServiceCalendarFrame_VersionFrameStructure Maven / Gradle / Ivy

There is a newer version: 2.0.15
Show newest version
//
// 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.Collection;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.rutebanken.netex.OmitNullsToStringStyle;


/**
 * 

Java class for ServiceCalendarFrame_VersionFrameStructure complex type. * *

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

 * <complexType name="ServiceCalendarFrame_VersionFrameStructure">
 *   <complexContent>
 *     <extension base="{http://www.netex.org.uk/netex}Common_VersionFrameStructure">
 *       <sequence>
 *         <group ref="{http://www.netex.org.uk/netex}ServiceCalendarFrameGroup"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ServiceCalendarFrame_VersionFrameStructure", propOrder = { "serviceCalendar", "dayTypes", "timebands", "groupOfTimebands", "operatingDays", "operatingPeriods", "dayTypeAssignments" }) @XmlSeeAlso({ ServiceCalendarFrame.class }) public class ServiceCalendarFrame_VersionFrameStructure extends Common_VersionFrameStructure { @XmlElement(name = "ServiceCalendar") protected ServiceCalendar serviceCalendar; protected DayTypesInFrame_RelStructure dayTypes; protected TimebandsInFrame_RelStructure timebands; protected GroupOfTimebandsInFrame_RelStructure groupOfTimebands; protected OperatingDaysInFrame_RelStructure operatingDays; protected OperatingPeriodsInFrame_RelStructure operatingPeriods; protected DayTypeAssignmentsInFrame_RelStructure dayTypeAssignments; /** * Gets the value of the serviceCalendar property. * * @return * possible object is * {@link ServiceCalendar } * */ public ServiceCalendar getServiceCalendar() { return serviceCalendar; } /** * Sets the value of the serviceCalendar property. * * @param value * allowed object is * {@link ServiceCalendar } * */ public void setServiceCalendar(ServiceCalendar value) { this.serviceCalendar = value; } /** * Gets the value of the dayTypes property. * * @return * possible object is * {@link DayTypesInFrame_RelStructure } * */ public DayTypesInFrame_RelStructure getDayTypes() { return dayTypes; } /** * Sets the value of the dayTypes property. * * @param value * allowed object is * {@link DayTypesInFrame_RelStructure } * */ public void setDayTypes(DayTypesInFrame_RelStructure value) { this.dayTypes = value; } /** * Gets the value of the timebands property. * * @return * possible object is * {@link TimebandsInFrame_RelStructure } * */ public TimebandsInFrame_RelStructure getTimebands() { return timebands; } /** * Sets the value of the timebands property. * * @param value * allowed object is * {@link TimebandsInFrame_RelStructure } * */ public void setTimebands(TimebandsInFrame_RelStructure value) { this.timebands = value; } /** * Gets the value of the groupOfTimebands property. * * @return * possible object is * {@link GroupOfTimebandsInFrame_RelStructure } * */ public GroupOfTimebandsInFrame_RelStructure getGroupOfTimebands() { return groupOfTimebands; } /** * Sets the value of the groupOfTimebands property. * * @param value * allowed object is * {@link GroupOfTimebandsInFrame_RelStructure } * */ public void setGroupOfTimebands(GroupOfTimebandsInFrame_RelStructure value) { this.groupOfTimebands = value; } /** * Gets the value of the operatingDays property. * * @return * possible object is * {@link OperatingDaysInFrame_RelStructure } * */ public OperatingDaysInFrame_RelStructure getOperatingDays() { return operatingDays; } /** * Sets the value of the operatingDays property. * * @param value * allowed object is * {@link OperatingDaysInFrame_RelStructure } * */ public void setOperatingDays(OperatingDaysInFrame_RelStructure value) { this.operatingDays = value; } /** * Gets the value of the operatingPeriods property. * * @return * possible object is * {@link OperatingPeriodsInFrame_RelStructure } * */ public OperatingPeriodsInFrame_RelStructure getOperatingPeriods() { return operatingPeriods; } /** * Sets the value of the operatingPeriods property. * * @param value * allowed object is * {@link OperatingPeriodsInFrame_RelStructure } * */ public void setOperatingPeriods(OperatingPeriodsInFrame_RelStructure value) { this.operatingPeriods = value; } /** * Gets the value of the dayTypeAssignments property. * * @return * possible object is * {@link DayTypeAssignmentsInFrame_RelStructure } * */ public DayTypeAssignmentsInFrame_RelStructure getDayTypeAssignments() { return dayTypeAssignments; } /** * Sets the value of the dayTypeAssignments property. * * @param value * allowed object is * {@link DayTypeAssignmentsInFrame_RelStructure } * */ public void setDayTypeAssignments(DayTypeAssignmentsInFrame_RelStructure value) { this.dayTypeAssignments = value; } public ServiceCalendarFrame_VersionFrameStructure withServiceCalendar(ServiceCalendar value) { setServiceCalendar(value); return this; } public ServiceCalendarFrame_VersionFrameStructure withDayTypes(DayTypesInFrame_RelStructure value) { setDayTypes(value); return this; } public ServiceCalendarFrame_VersionFrameStructure withTimebands(TimebandsInFrame_RelStructure value) { setTimebands(value); return this; } public ServiceCalendarFrame_VersionFrameStructure withGroupOfTimebands(GroupOfTimebandsInFrame_RelStructure value) { setGroupOfTimebands(value); return this; } public ServiceCalendarFrame_VersionFrameStructure withOperatingDays(OperatingDaysInFrame_RelStructure value) { setOperatingDays(value); return this; } public ServiceCalendarFrame_VersionFrameStructure withOperatingPeriods(OperatingPeriodsInFrame_RelStructure value) { setOperatingPeriods(value); return this; } public ServiceCalendarFrame_VersionFrameStructure withDayTypeAssignments(DayTypeAssignmentsInFrame_RelStructure value) { setDayTypeAssignments(value); return this; } @Override public ServiceCalendarFrame_VersionFrameStructure withName(MultilingualString value) { setName(value); return this; } @Override public ServiceCalendarFrame_VersionFrameStructure withDescription(MultilingualString value) { setDescription(value); return this; } @Override public ServiceCalendarFrame_VersionFrameStructure withTypeOfFrameRef(TypeOfFrameRefStructure value) { setTypeOfFrameRef(value); return this; } @Override public ServiceCalendarFrame_VersionFrameStructure withBaselineVersionFrameRef(VersionRefStructure value) { setBaselineVersionFrameRef(value); return this; } @Override public ServiceCalendarFrame_VersionFrameStructure withCodespaces(Codespaces_RelStructure value) { setCodespaces(value); return this; } @Override public ServiceCalendarFrame_VersionFrameStructure withFrameDefaults(VersionFrameDefaultsStructure value) { setFrameDefaults(value); return this; } @Override public ServiceCalendarFrame_VersionFrameStructure withVersions(Versions_RelStructure value) { setVersions(value); return this; } @Override public ServiceCalendarFrame_VersionFrameStructure withTraces(Traces_RelStructure value) { setTraces(value); return this; } @Override public ServiceCalendarFrame_VersionFrameStructure withContentValidityConditions(ValidityConditions_RelStructure value) { setContentValidityConditions(value); return this; } @Override public ServiceCalendarFrame_VersionFrameStructure withKeyList(KeyListStructure value) { setKeyList(value); return this; } @Override public ServiceCalendarFrame_VersionFrameStructure withExtensions(ExtensionsStructure value) { setExtensions(value); return this; } @Override public ServiceCalendarFrame_VersionFrameStructure withBrandingRef(BrandingRefStructure value) { setBrandingRef(value); return this; } @Override public ServiceCalendarFrame_VersionFrameStructure withAlternativeTexts(AlternativeTexts_RelStructure value) { setAlternativeTexts(value); return this; } @Override public ServiceCalendarFrame_VersionFrameStructure withResponsibilitySetRef(String value) { setResponsibilitySetRef(value); return this; } @Override public ServiceCalendarFrame_VersionFrameStructure withValidityConditions(ValidityConditions_RelStructure value) { setValidityConditions(value); return this; } @Override public ServiceCalendarFrame_VersionFrameStructure withValidBetween(ValidBetween... values) { if (values!= null) { for (ValidBetween value: values) { getValidBetween().add(value); } } return this; } @Override public ServiceCalendarFrame_VersionFrameStructure withValidBetween(Collection values) { if (values!= null) { getValidBetween().addAll(values); } return this; } @Override public ServiceCalendarFrame_VersionFrameStructure withDataSourceRef(String value) { setDataSourceRef(value); return this; } @Override public ServiceCalendarFrame_VersionFrameStructure withCreated(OffsetDateTime value) { setCreated(value); return this; } @Override public ServiceCalendarFrame_VersionFrameStructure withChanged(OffsetDateTime value) { setChanged(value); return this; } @Override public ServiceCalendarFrame_VersionFrameStructure withModification(ModificationEnumeration value) { setModification(value); return this; } @Override public ServiceCalendarFrame_VersionFrameStructure withVersion(String value) { setVersion(value); return this; } @Override public ServiceCalendarFrame_VersionFrameStructure withStatus_BasicModificationDetailsGroup(StatusEnumeration value) { setStatus_BasicModificationDetailsGroup(value); return this; } @Override public ServiceCalendarFrame_VersionFrameStructure withDerivedFromVersionRef_BasicModificationDetailsGroup(String value) { setDerivedFromVersionRef_BasicModificationDetailsGroup(value); return this; } @Override public ServiceCalendarFrame_VersionFrameStructure withCompatibleWithVersionFrameVersionRef(String value) { setCompatibleWithVersionFrameVersionRef(value); return this; } @Override public ServiceCalendarFrame_VersionFrameStructure withDerivedFromObjectRef(String value) { setDerivedFromObjectRef(value); return this; } @Override public ServiceCalendarFrame_VersionFrameStructure withNameOfClass(String value) { setNameOfClass(value); return this; } @Override public ServiceCalendarFrame_VersionFrameStructure 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); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy