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

org.rutebanken.netex.model.TimetableFrame 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.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.rutebanken.netex.OmitNullsToStringStyle;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.netex.org.uk/netex}Timetable_VersionFrameStructure">
 *       <sequence>
 *         <sequence>
 *           <group ref="{http://www.netex.org.uk/netex}EntityInVersionGroup" minOccurs="0"/>
 *         </sequence>
 *         <sequence>
 *           <group ref="{http://www.netex.org.uk/netex}DataManagedObjectGroup"/>
 *         </sequence>
 *         <sequence>
 *           <group ref="{http://www.netex.org.uk/netex}VersionFrameGroup"/>
 *         </sequence>
 *         <sequence>
 *           <group ref="{http://www.netex.org.uk/netex}TimetableFrameGroup"/>
 *         </sequence>
 *       </sequence>
 *       <attribute name="id" type="{http://www.netex.org.uk/netex}TimetableFrameIdType" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public class TimetableFrame extends Timetable_VersionFrameStructure { @Override public TimetableFrame withVehicleModes(VehicleModeEnumeration... values) { if (values!= null) { for (VehicleModeEnumeration value: values) { getVehicleModes().add(value); } } return this; } @Override public TimetableFrame withVehicleModes(Collection values) { if (values!= null) { getVehicleModes().addAll(values); } return this; } @Override public TimetableFrame withHeadwayService(Boolean value) { setHeadwayService(value); return this; } @Override public TimetableFrame withMonitored(Boolean value) { setMonitored(value); return this; } @Override public TimetableFrame withNetworkView(NetworkView value) { setNetworkView(value); return this; } @Override public TimetableFrame withLineView(LineView value) { setLineView(value); return this; } @Override public TimetableFrame withOperatorView(OperatorView value) { setOperatorView(value); return this; } @Override public TimetableFrame withServiceCalendarFrameRef(ServiceCalendarFrameRef value) { setServiceCalendarFrameRef(value); return this; } @Override public TimetableFrame withDefaultMode(VehicleModeEnumeration value) { setDefaultMode(value); return this; } @Override public TimetableFrame withJourneyAccountingRef(JourneyAccountingRefStructure value) { setJourneyAccountingRef(value); return this; } @Override public TimetableFrame withBookingTimes(ContainedAvailabilityConditions_RelStructure value) { setBookingTimes(value); return this; } @Override public TimetableFrame withAccessibilityAssessment(AccessibilityAssessment value) { setAccessibilityAssessment(value); return this; } @Override public TimetableFrame withVehicleTypeRef(JAXBElement value) { setVehicleTypeRef(value); return this; } @Override public TimetableFrame withTimeDemandTypes(TimeDemandTypesInFrame_RelStructure value) { setTimeDemandTypes(value); return this; } @Override public TimetableFrame withTimeDemandTypeAssignments(TimeDemandTypeAssignmentsInFrame_RelStructure value) { setTimeDemandTypeAssignments(value); return this; } @Override public TimetableFrame withTimingLinkGroups(GroupOfLinksInFrame_RelStructure value) { setTimingLinkGroups(value); return this; } @Override public TimetableFrame withVehicleJourneys(JourneysInFrame_RelStructure value) { setVehicleJourneys(value); return this; } @Override public TimetableFrame withFrequencyGroups(FrequencyGroupsInFrame_RelStructure value) { setFrequencyGroups(value); return this; } @Override public TimetableFrame withGroupsOfServices(GroupsOfServicesInFrame_RelStructure value) { setGroupsOfServices(value); return this; } @Override public TimetableFrame withTrainNumbers(TrainNumbersInFrame_RelStructure value) { setTrainNumbers(value); return this; } @Override public TimetableFrame withJourneyPartCouples(JourneyPartCouplesInFrame_RelStructure value) { setJourneyPartCouples(value); return this; } @Override public TimetableFrame withCoupledJourneys(CoupledJourneysInFrame_RelStructure value) { setCoupledJourneys(value); return this; } @Override public TimetableFrame withServiceFacilitySets(ServiceFacilitySetsInFrame_RelStructure value) { setServiceFacilitySets(value); return this; } @Override public TimetableFrame withTypesOfService(TypesOfServiceInFrame_RelStructure value) { setTypesOfService(value); return this; } @Override public TimetableFrame withFlexibleServiceProperties(FlexibleServicePropertiesInFrame_RelStructure value) { setFlexibleServiceProperties(value); return this; } @Override public TimetableFrame withNotices(NoticesInFrame_RelStructure value) { setNotices(value); return this; } @Override public TimetableFrame withNoticeAssignments(NoticeAssignmentsInFrame_RelStructure value) { setNoticeAssignments(value); return this; } @Override public TimetableFrame withJourneyMeetings(JourneyMeetingsInFrame_RelStructure value) { setJourneyMeetings(value); return this; } @Override public TimetableFrame withJourneyInterchanges(JourneyInterchangesInFrame_RelStructure value) { setJourneyInterchanges(value); return this; } @Override public TimetableFrame withDefaultInterchanges(DefaultInterchangseInFrame_RelStructure value) { setDefaultInterchanges(value); return this; } @Override public TimetableFrame withInterchangeRules(InterchangeRulesInFrame_RelStructure value) { setInterchangeRules(value); return this; } @Override public TimetableFrame withVehicleTypes(VehicleTypesInFrame_RelStructure value) { setVehicleTypes(value); return this; } @Override public TimetableFrame withJourneyAccountings(JourneyAccountingsInFrame_RelStructure value) { setJourneyAccountings(value); return this; } @Override public TimetableFrame withName(MultilingualString value) { setName(value); return this; } @Override public TimetableFrame withDescription(MultilingualString value) { setDescription(value); return this; } @Override public TimetableFrame withTypeOfFrameRef(TypeOfFrameRefStructure value) { setTypeOfFrameRef(value); return this; } @Override public TimetableFrame withBaselineVersionFrameRef(VersionRefStructure value) { setBaselineVersionFrameRef(value); return this; } @Override public TimetableFrame withCodespaces(Codespaces_RelStructure value) { setCodespaces(value); return this; } @Override public TimetableFrame withFrameDefaults(VersionFrameDefaultsStructure value) { setFrameDefaults(value); return this; } @Override public TimetableFrame withVersions(Versions_RelStructure value) { setVersions(value); return this; } @Override public TimetableFrame withTraces(Traces_RelStructure value) { setTraces(value); return this; } @Override public TimetableFrame withContentValidityConditions(ValidityConditions_RelStructure value) { setContentValidityConditions(value); return this; } @Override public TimetableFrame withKeyList(KeyListStructure value) { setKeyList(value); return this; } @Override public TimetableFrame withExtensions(ExtensionsStructure value) { setExtensions(value); return this; } @Override public TimetableFrame withBrandingRef(BrandingRefStructure value) { setBrandingRef(value); return this; } @Override public TimetableFrame withAlternativeTexts(AlternativeTexts_RelStructure value) { setAlternativeTexts(value); return this; } @Override public TimetableFrame withResponsibilitySetRef(String value) { setResponsibilitySetRef(value); return this; } @Override public TimetableFrame withValidityConditions(ValidityConditions_RelStructure value) { setValidityConditions(value); return this; } @Override public TimetableFrame withValidBetween(ValidBetween... values) { if (values!= null) { for (ValidBetween value: values) { getValidBetween().add(value); } } return this; } @Override public TimetableFrame withValidBetween(Collection values) { if (values!= null) { getValidBetween().addAll(values); } return this; } @Override public TimetableFrame withDataSourceRef(String value) { setDataSourceRef(value); return this; } @Override public TimetableFrame withCreated(OffsetDateTime value) { setCreated(value); return this; } @Override public TimetableFrame withChanged(OffsetDateTime value) { setChanged(value); return this; } @Override public TimetableFrame withModification(ModificationEnumeration value) { setModification(value); return this; } @Override public TimetableFrame withVersion(String value) { setVersion(value); return this; } @Override public TimetableFrame withStatus_BasicModificationDetailsGroup(StatusEnumeration value) { setStatus_BasicModificationDetailsGroup(value); return this; } @Override public TimetableFrame withDerivedFromVersionRef_BasicModificationDetailsGroup(String value) { setDerivedFromVersionRef_BasicModificationDetailsGroup(value); return this; } @Override public TimetableFrame withCompatibleWithVersionFrameVersionRef(String value) { setCompatibleWithVersionFrameVersionRef(value); return this; } @Override public TimetableFrame withDerivedFromObjectRef(String value) { setDerivedFromObjectRef(value); return this; } @Override public TimetableFrame withNameOfClass(String value) { setNameOfClass(value); return this; } @Override public TimetableFrame 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