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

org.rutebanken.netex.model.EntranceEquipment_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.math.BigDecimal;
import java.math.BigInteger;
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.XmlSchemaType;
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 EntranceEquipment_VersionStructure complex type. * *

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

 * <complexType name="EntranceEquipment_VersionStructure">
 *   <complexContent>
 *     <extension base="{http://www.netex.org.uk/netex}AccessEquipment_VersionStructure">
 *       <sequence>
 *         <group ref="{http://www.netex.org.uk/netex}EntranceEquipmentGroup"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EntranceEquipment_VersionStructure", propOrder = { "door", "keptOpen", "revolvingDoor", "barrier", "numberOfGates", "staffing", "entranceRequiresStaffing", "entranceRequiresTicket", "entranceRequiresPassport", "acousticSensor", "automaticDoor", "glassDoor", "wheelchairPassable", "wheechairUnaided", "entranceAttention", "suitableForCycles" }) @XmlSeeAlso({ EntranceEquipment.class }) public class EntranceEquipment_VersionStructure extends AccessEquipment_VersionStructure { @XmlElement(name = "Door") protected Boolean door; @XmlElement(name = "KeptOpen") protected Boolean keptOpen; @XmlElement(name = "RevolvingDoor") protected Boolean revolvingDoor; @XmlElement(name = "Barrier") protected Boolean barrier; @XmlElement(name = "NumberOfGates") protected BigInteger numberOfGates; @XmlElement(name = "Staffing") @XmlSchemaType(name = "normalizedString") protected StaffingEnumeration staffing; @XmlElement(name = "EntranceRequiresStaffing") protected Boolean entranceRequiresStaffing; @XmlElement(name = "EntranceRequiresTicket") protected Boolean entranceRequiresTicket; @XmlElement(name = "EntranceRequiresPassport") protected Boolean entranceRequiresPassport; @XmlElement(name = "AcousticSensor") protected Boolean acousticSensor; @XmlElement(name = "AutomaticDoor") protected Boolean automaticDoor; @XmlElement(name = "GlassDoor") protected Boolean glassDoor; @XmlElement(name = "WheelchairPassable") protected Boolean wheelchairPassable; @XmlElement(name = "WheechairUnaided") protected Boolean wheechairUnaided; @XmlElement(name = "EntranceAttention") @XmlSchemaType(name = "string") protected EntranceAttentionEnumeration entranceAttention; @XmlElement(name = "SuitableForCycles") protected Boolean suitableForCycles; /** * Gets the value of the door property. * * @return * possible object is * {@link Boolean } * */ public Boolean isDoor() { return door; } /** * Sets the value of the door property. * * @param value * allowed object is * {@link Boolean } * */ public void setDoor(Boolean value) { this.door = value; } /** * Gets the value of the keptOpen property. * * @return * possible object is * {@link Boolean } * */ public Boolean isKeptOpen() { return keptOpen; } /** * Sets the value of the keptOpen property. * * @param value * allowed object is * {@link Boolean } * */ public void setKeptOpen(Boolean value) { this.keptOpen = value; } /** * Gets the value of the revolvingDoor property. * * @return * possible object is * {@link Boolean } * */ public Boolean isRevolvingDoor() { return revolvingDoor; } /** * Sets the value of the revolvingDoor property. * * @param value * allowed object is * {@link Boolean } * */ public void setRevolvingDoor(Boolean value) { this.revolvingDoor = value; } /** * Gets the value of the barrier property. * * @return * possible object is * {@link Boolean } * */ public Boolean isBarrier() { return barrier; } /** * Sets the value of the barrier property. * * @param value * allowed object is * {@link Boolean } * */ public void setBarrier(Boolean value) { this.barrier = value; } /** * Gets the value of the numberOfGates property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getNumberOfGates() { return numberOfGates; } /** * Sets the value of the numberOfGates property. * * @param value * allowed object is * {@link BigInteger } * */ public void setNumberOfGates(BigInteger value) { this.numberOfGates = value; } /** * Gets the value of the staffing property. * * @return * possible object is * {@link StaffingEnumeration } * */ public StaffingEnumeration getStaffing() { return staffing; } /** * Sets the value of the staffing property. * * @param value * allowed object is * {@link StaffingEnumeration } * */ public void setStaffing(StaffingEnumeration value) { this.staffing = value; } /** * Gets the value of the entranceRequiresStaffing property. * * @return * possible object is * {@link Boolean } * */ public Boolean isEntranceRequiresStaffing() { return entranceRequiresStaffing; } /** * Sets the value of the entranceRequiresStaffing property. * * @param value * allowed object is * {@link Boolean } * */ public void setEntranceRequiresStaffing(Boolean value) { this.entranceRequiresStaffing = value; } /** * Gets the value of the entranceRequiresTicket property. * * @return * possible object is * {@link Boolean } * */ public Boolean isEntranceRequiresTicket() { return entranceRequiresTicket; } /** * Sets the value of the entranceRequiresTicket property. * * @param value * allowed object is * {@link Boolean } * */ public void setEntranceRequiresTicket(Boolean value) { this.entranceRequiresTicket = value; } /** * Gets the value of the entranceRequiresPassport property. * * @return * possible object is * {@link Boolean } * */ public Boolean isEntranceRequiresPassport() { return entranceRequiresPassport; } /** * Sets the value of the entranceRequiresPassport property. * * @param value * allowed object is * {@link Boolean } * */ public void setEntranceRequiresPassport(Boolean value) { this.entranceRequiresPassport = value; } /** * Gets the value of the acousticSensor property. * * @return * possible object is * {@link Boolean } * */ public Boolean isAcousticSensor() { return acousticSensor; } /** * Sets the value of the acousticSensor property. * * @param value * allowed object is * {@link Boolean } * */ public void setAcousticSensor(Boolean value) { this.acousticSensor = value; } /** * Gets the value of the automaticDoor property. * * @return * possible object is * {@link Boolean } * */ public Boolean isAutomaticDoor() { return automaticDoor; } /** * Sets the value of the automaticDoor property. * * @param value * allowed object is * {@link Boolean } * */ public void setAutomaticDoor(Boolean value) { this.automaticDoor = value; } /** * Gets the value of the glassDoor property. * * @return * possible object is * {@link Boolean } * */ public Boolean isGlassDoor() { return glassDoor; } /** * Sets the value of the glassDoor property. * * @param value * allowed object is * {@link Boolean } * */ public void setGlassDoor(Boolean value) { this.glassDoor = value; } /** * Gets the value of the wheelchairPassable property. * * @return * possible object is * {@link Boolean } * */ public Boolean isWheelchairPassable() { return wheelchairPassable; } /** * Sets the value of the wheelchairPassable property. * * @param value * allowed object is * {@link Boolean } * */ public void setWheelchairPassable(Boolean value) { this.wheelchairPassable = value; } /** * Gets the value of the wheechairUnaided property. * * @return * possible object is * {@link Boolean } * */ public Boolean isWheechairUnaided() { return wheechairUnaided; } /** * Sets the value of the wheechairUnaided property. * * @param value * allowed object is * {@link Boolean } * */ public void setWheechairUnaided(Boolean value) { this.wheechairUnaided = value; } /** * Gets the value of the entranceAttention property. * * @return * possible object is * {@link EntranceAttentionEnumeration } * */ public EntranceAttentionEnumeration getEntranceAttention() { return entranceAttention; } /** * Sets the value of the entranceAttention property. * * @param value * allowed object is * {@link EntranceAttentionEnumeration } * */ public void setEntranceAttention(EntranceAttentionEnumeration value) { this.entranceAttention = value; } /** * Gets the value of the suitableForCycles property. * * @return * possible object is * {@link Boolean } * */ public Boolean isSuitableForCycles() { return suitableForCycles; } /** * Sets the value of the suitableForCycles property. * * @param value * allowed object is * {@link Boolean } * */ public void setSuitableForCycles(Boolean value) { this.suitableForCycles = value; } public EntranceEquipment_VersionStructure withDoor(Boolean value) { setDoor(value); return this; } public EntranceEquipment_VersionStructure withKeptOpen(Boolean value) { setKeptOpen(value); return this; } public EntranceEquipment_VersionStructure withRevolvingDoor(Boolean value) { setRevolvingDoor(value); return this; } public EntranceEquipment_VersionStructure withBarrier(Boolean value) { setBarrier(value); return this; } public EntranceEquipment_VersionStructure withNumberOfGates(BigInteger value) { setNumberOfGates(value); return this; } public EntranceEquipment_VersionStructure withStaffing(StaffingEnumeration value) { setStaffing(value); return this; } public EntranceEquipment_VersionStructure withEntranceRequiresStaffing(Boolean value) { setEntranceRequiresStaffing(value); return this; } public EntranceEquipment_VersionStructure withEntranceRequiresTicket(Boolean value) { setEntranceRequiresTicket(value); return this; } public EntranceEquipment_VersionStructure withEntranceRequiresPassport(Boolean value) { setEntranceRequiresPassport(value); return this; } public EntranceEquipment_VersionStructure withAcousticSensor(Boolean value) { setAcousticSensor(value); return this; } public EntranceEquipment_VersionStructure withAutomaticDoor(Boolean value) { setAutomaticDoor(value); return this; } public EntranceEquipment_VersionStructure withGlassDoor(Boolean value) { setGlassDoor(value); return this; } public EntranceEquipment_VersionStructure withWheelchairPassable(Boolean value) { setWheelchairPassable(value); return this; } public EntranceEquipment_VersionStructure withWheechairUnaided(Boolean value) { setWheechairUnaided(value); return this; } public EntranceEquipment_VersionStructure withEntranceAttention(EntranceAttentionEnumeration value) { setEntranceAttention(value); return this; } public EntranceEquipment_VersionStructure withSuitableForCycles(Boolean value) { setSuitableForCycles(value); return this; } @Override public EntranceEquipment_VersionStructure withWidth(BigDecimal value) { setWidth(value); return this; } @Override public EntranceEquipment_VersionStructure withDirectionOfUse(DirectionOfUseEnumeration value) { setDirectionOfUse(value); return this; } @Override public EntranceEquipment_VersionStructure withPassengersPerMinute(BigInteger value) { setPassengersPerMinute(value); return this; } @Override public EntranceEquipment_VersionStructure withRelativeWeighting(BigInteger value) { setRelativeWeighting(value); return this; } @Override public EntranceEquipment_VersionStructure withName(MultilingualString value) { setName(value); return this; } @Override public EntranceEquipment_VersionStructure withPrivateCode(PrivateCodeStructure value) { setPrivateCode(value); return this; } @Override public EntranceEquipment_VersionStructure withPublicCode(PrivateCodeStructure value) { setPublicCode(value); return this; } @Override public EntranceEquipment_VersionStructure withImage(String value) { setImage(value); return this; } @Override public EntranceEquipment_VersionStructure withTypeOfEquipmentRef(TypeOfEquipmentRefStructure value) { setTypeOfEquipmentRef(value); return this; } @Override public EntranceEquipment_VersionStructure withDescription(MultilingualString value) { setDescription(value); return this; } @Override public EntranceEquipment_VersionStructure withNote(MultilingualString value) { setNote(value); return this; } @Override public EntranceEquipment_VersionStructure withOutOfService(Boolean value) { setOutOfService(value); return this; } @Override public EntranceEquipment_VersionStructure withKeyList(KeyListStructure value) { setKeyList(value); return this; } @Override public EntranceEquipment_VersionStructure withExtensions(ExtensionsStructure value) { setExtensions(value); return this; } @Override public EntranceEquipment_VersionStructure withBrandingRef(BrandingRefStructure value) { setBrandingRef(value); return this; } @Override public EntranceEquipment_VersionStructure withAlternativeTexts(AlternativeTexts_RelStructure value) { setAlternativeTexts(value); return this; } @Override public EntranceEquipment_VersionStructure withResponsibilitySetRef(String value) { setResponsibilitySetRef(value); return this; } @Override public EntranceEquipment_VersionStructure withValidityConditions(ValidityConditions_RelStructure value) { setValidityConditions(value); return this; } @Override public EntranceEquipment_VersionStructure withValidBetween(ValidBetween... values) { if (values!= null) { for (ValidBetween value: values) { getValidBetween().add(value); } } return this; } @Override public EntranceEquipment_VersionStructure withValidBetween(Collection values) { if (values!= null) { getValidBetween().addAll(values); } return this; } @Override public EntranceEquipment_VersionStructure withDataSourceRef(String value) { setDataSourceRef(value); return this; } @Override public EntranceEquipment_VersionStructure withCreated(OffsetDateTime value) { setCreated(value); return this; } @Override public EntranceEquipment_VersionStructure withChanged(OffsetDateTime value) { setChanged(value); return this; } @Override public EntranceEquipment_VersionStructure withModification(ModificationEnumeration value) { setModification(value); return this; } @Override public EntranceEquipment_VersionStructure withVersion(String value) { setVersion(value); return this; } @Override public EntranceEquipment_VersionStructure withStatus_BasicModificationDetailsGroup(StatusEnumeration value) { setStatus_BasicModificationDetailsGroup(value); return this; } @Override public EntranceEquipment_VersionStructure withDerivedFromVersionRef_BasicModificationDetailsGroup(String value) { setDerivedFromVersionRef_BasicModificationDetailsGroup(value); return this; } @Override public EntranceEquipment_VersionStructure withCompatibleWithVersionFrameVersionRef(String value) { setCompatibleWithVersionFrameVersionRef(value); return this; } @Override public EntranceEquipment_VersionStructure withDerivedFromObjectRef(String value) { setDerivedFromObjectRef(value); return this; } @Override public EntranceEquipment_VersionStructure withNameOfClass(String value) { setNameOfClass(value); return this; } @Override public EntranceEquipment_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