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

org.rutebanken.netex.model.PurchaseWindow_VersionStructure 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.Duration;
import java.time.OffsetDateTime;
import java.time.OffsetTime;
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.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import com.migesok.jaxb.adapter.javatime.DurationXmlAdapter;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.rutebanken.netex.OmitNullsToStringStyle;
import org.rutebanken.util.OffsetTimeISO8601XmlAdapter;


/**
 * 

Java class for PurchaseWindow_VersionStructure complex type. * *

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

 * <complexType name="PurchaseWindow_VersionStructure">
 *   <complexContent>
 *     <extension base="{http://www.netex.org.uk/netex}UsageParameter_VersionStructure">
 *       <sequence>
 *         <group ref="{http://www.netex.org.uk/netex}PurchaseWindowGroup"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PurchaseWindow_VersionStructure", propOrder = { "purchaseWhen", "latestTime", "minimumPeriodBeforeDeparture", "minimumPeriodIntervalRef", "maximumPeriodBeforeDeparture", "maximumPeriodIntervalRef" }) @XmlSeeAlso({ PurchaseWindow.class }) public class PurchaseWindow_VersionStructure extends UsageParameter_VersionStructure { @XmlElement(name = "PurchaseWhen", defaultValue = "advanceAndDayOfTravel") @XmlSchemaType(name = "normalizedString") protected PurchaseWhenEnumeration purchaseWhen; @XmlElement(name = "LatestTime", type = String.class) @XmlJavaTypeAdapter(OffsetTimeISO8601XmlAdapter.class) @XmlSchemaType(name = "time") protected OffsetTime latestTime; @XmlElement(name = "MinimumPeriodBeforeDeparture", type = String.class) @XmlJavaTypeAdapter(DurationXmlAdapter.class) @XmlSchemaType(name = "duration") protected Duration minimumPeriodBeforeDeparture; @XmlElement(name = "MinimumPeriodIntervalRef") protected TimeIntervalRefStructure minimumPeriodIntervalRef; @XmlElement(name = "MaximumPeriodBeforeDeparture", type = String.class) @XmlJavaTypeAdapter(DurationXmlAdapter.class) @XmlSchemaType(name = "duration") protected Duration maximumPeriodBeforeDeparture; @XmlElement(name = "MaximumPeriodIntervalRef") protected TimeIntervalRefStructure maximumPeriodIntervalRef; /** * Gets the value of the purchaseWhen property. * * @return * possible object is * {@link PurchaseWhenEnumeration } * */ public PurchaseWhenEnumeration getPurchaseWhen() { return purchaseWhen; } /** * Sets the value of the purchaseWhen property. * * @param value * allowed object is * {@link PurchaseWhenEnumeration } * */ public void setPurchaseWhen(PurchaseWhenEnumeration value) { this.purchaseWhen = value; } /** * Gets the value of the latestTime property. * * @return * possible object is * {@link String } * */ public OffsetTime getLatestTime() { return latestTime; } /** * Sets the value of the latestTime property. * * @param value * allowed object is * {@link String } * */ public void setLatestTime(OffsetTime value) { this.latestTime = value; } /** * Gets the value of the minimumPeriodBeforeDeparture property. * * @return * possible object is * {@link String } * */ public Duration getMinimumPeriodBeforeDeparture() { return minimumPeriodBeforeDeparture; } /** * Sets the value of the minimumPeriodBeforeDeparture property. * * @param value * allowed object is * {@link String } * */ public void setMinimumPeriodBeforeDeparture(Duration value) { this.minimumPeriodBeforeDeparture = value; } /** * Gets the value of the minimumPeriodIntervalRef property. * * @return * possible object is * {@link TimeIntervalRefStructure } * */ public TimeIntervalRefStructure getMinimumPeriodIntervalRef() { return minimumPeriodIntervalRef; } /** * Sets the value of the minimumPeriodIntervalRef property. * * @param value * allowed object is * {@link TimeIntervalRefStructure } * */ public void setMinimumPeriodIntervalRef(TimeIntervalRefStructure value) { this.minimumPeriodIntervalRef = value; } /** * Gets the value of the maximumPeriodBeforeDeparture property. * * @return * possible object is * {@link String } * */ public Duration getMaximumPeriodBeforeDeparture() { return maximumPeriodBeforeDeparture; } /** * Sets the value of the maximumPeriodBeforeDeparture property. * * @param value * allowed object is * {@link String } * */ public void setMaximumPeriodBeforeDeparture(Duration value) { this.maximumPeriodBeforeDeparture = value; } /** * Gets the value of the maximumPeriodIntervalRef property. * * @return * possible object is * {@link TimeIntervalRefStructure } * */ public TimeIntervalRefStructure getMaximumPeriodIntervalRef() { return maximumPeriodIntervalRef; } /** * Sets the value of the maximumPeriodIntervalRef property. * * @param value * allowed object is * {@link TimeIntervalRefStructure } * */ public void setMaximumPeriodIntervalRef(TimeIntervalRefStructure value) { this.maximumPeriodIntervalRef = value; } public PurchaseWindow_VersionStructure withPurchaseWhen(PurchaseWhenEnumeration value) { setPurchaseWhen(value); return this; } public PurchaseWindow_VersionStructure withLatestTime(OffsetTime value) { setLatestTime(value); return this; } public PurchaseWindow_VersionStructure withMinimumPeriodBeforeDeparture(Duration value) { setMinimumPeriodBeforeDeparture(value); return this; } public PurchaseWindow_VersionStructure withMinimumPeriodIntervalRef(TimeIntervalRefStructure value) { setMinimumPeriodIntervalRef(value); return this; } public PurchaseWindow_VersionStructure withMaximumPeriodBeforeDeparture(Duration value) { setMaximumPeriodBeforeDeparture(value); return this; } public PurchaseWindow_VersionStructure withMaximumPeriodIntervalRef(TimeIntervalRefStructure value) { setMaximumPeriodIntervalRef(value); return this; } @Override public PurchaseWindow_VersionStructure withUrl(String value) { setUrl(value); return this; } @Override public PurchaseWindow_VersionStructure withTypeOfUsageParameterRef(TypeOfUsageParameterRefStructure value) { setTypeOfUsageParameterRef(value); return this; } @Override public PurchaseWindow_VersionStructure withPrices(UsageParameterPrices_RelStructure value) { setPrices(value); return this; } @Override public PurchaseWindow_VersionStructure withName(MultilingualString value) { setName(value); return this; } @Override public PurchaseWindow_VersionStructure withDescription(MultilingualString value) { setDescription(value); return this; } @Override public PurchaseWindow_VersionStructure withAlternativeNames(AlternativeNames_RelStructure value) { setAlternativeNames(value); return this; } @Override public PurchaseWindow_VersionStructure withNoticeAssignments(NoticeAssignments_RelStructure value) { setNoticeAssignments(value); return this; } @Override public PurchaseWindow_VersionStructure withPricingServiceRef(PricingServiceRefStructure value) { setPricingServiceRef(value); return this; } @Override public PurchaseWindow_VersionStructure withPricingRuleRef(JAXBElement value) { setPricingRuleRef(value); return this; } @Override public PurchaseWindow_VersionStructure withPriceGroups(PriceGroups_RelStructure value) { setPriceGroups(value); return this; } @Override public PurchaseWindow_VersionStructure withFareTables(FareTables_RelStructure value) { setFareTables(value); return this; } @Override public PurchaseWindow_VersionStructure withKeyList(KeyListStructure value) { setKeyList(value); return this; } @Override public PurchaseWindow_VersionStructure withExtensions(ExtensionsStructure value) { setExtensions(value); return this; } @Override public PurchaseWindow_VersionStructure withBrandingRef(BrandingRefStructure value) { setBrandingRef(value); return this; } @Override public PurchaseWindow_VersionStructure withAlternativeTexts(AlternativeTexts_RelStructure value) { setAlternativeTexts(value); return this; } @Override public PurchaseWindow_VersionStructure withResponsibilitySetRef(String value) { setResponsibilitySetRef(value); return this; } @Override public PurchaseWindow_VersionStructure withValidityConditions(ValidityConditions_RelStructure value) { setValidityConditions(value); return this; } @Override public PurchaseWindow_VersionStructure withValidBetween(ValidBetween... values) { if (values!= null) { for (ValidBetween value: values) { getValidBetween().add(value); } } return this; } @Override public PurchaseWindow_VersionStructure withValidBetween(Collection values) { if (values!= null) { getValidBetween().addAll(values); } return this; } @Override public PurchaseWindow_VersionStructure withDataSourceRef(String value) { setDataSourceRef(value); return this; } @Override public PurchaseWindow_VersionStructure withCreated(OffsetDateTime value) { setCreated(value); return this; } @Override public PurchaseWindow_VersionStructure withChanged(OffsetDateTime value) { setChanged(value); return this; } @Override public PurchaseWindow_VersionStructure withModification(ModificationEnumeration value) { setModification(value); return this; } @Override public PurchaseWindow_VersionStructure withVersion(String value) { setVersion(value); return this; } @Override public PurchaseWindow_VersionStructure withStatus_BasicModificationDetailsGroup(StatusEnumeration value) { setStatus_BasicModificationDetailsGroup(value); return this; } @Override public PurchaseWindow_VersionStructure withDerivedFromVersionRef_BasicModificationDetailsGroup(String value) { setDerivedFromVersionRef_BasicModificationDetailsGroup(value); return this; } @Override public PurchaseWindow_VersionStructure withCompatibleWithVersionFrameVersionRef(String value) { setCompatibleWithVersionFrameVersionRef(value); return this; } @Override public PurchaseWindow_VersionStructure withDerivedFromObjectRef(String value) { setDerivedFromObjectRef(value); return this; } @Override public PurchaseWindow_VersionStructure withNameOfClass(String value) { setNameOfClass(value); return this; } @Override public PurchaseWindow_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); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy