org.rutebanken.netex.model.WheelchairVehicleEquipment_VersionStructure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of netex-java-model Show documentation
Show all versions of netex-java-model Show documentation
Generates Java model from NeTEx XSDs using JAXB.
//
// 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.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 org.apache.commons.lang3.builder.ToStringBuilder;
import org.rutebanken.netex.OmitNullsToStringStyle;
/**
* Java class for WheelchairVehicleEquipment_VersionStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="WheelchairVehicleEquipment_VersionStructure">
* <complexContent>
* <extension base="{http://www.netex.org.uk/netex}ActualVehicleEquipment_VersionStructure">
* <sequence>
* <group ref="{http://www.netex.org.uk/netex}WheelchairVehicleEquipmentGroup"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "WheelchairVehicleEquipment_VersionStructure", propOrder = {
"hasWheelChairSpaces",
"numberOfWheelchairAreas",
"widthOfAccessArea",
"lengthOfAccessArea",
"heightOfAccessArea",
"wheelchairTurningCircle",
"companionSeat"
})
@XmlSeeAlso({
WheelchairVehicleEquipment.class
})
public class WheelchairVehicleEquipment_VersionStructure
extends ActualVehicleEquipment_VersionStructure
{
@XmlElement(name = "HasWheelChairSpaces")
protected Boolean hasWheelChairSpaces;
@XmlElement(name = "NumberOfWheelchairAreas")
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger numberOfWheelchairAreas;
@XmlElement(name = "WidthOfAccessArea")
protected BigDecimal widthOfAccessArea;
@XmlElement(name = "LengthOfAccessArea")
protected BigDecimal lengthOfAccessArea;
@XmlElement(name = "HeightOfAccessArea")
protected BigDecimal heightOfAccessArea;
@XmlElement(name = "WheelchairTurningCircle")
protected BigDecimal wheelchairTurningCircle;
@XmlElement(name = "CompanionSeat")
protected Boolean companionSeat;
/**
* Gets the value of the hasWheelChairSpaces property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isHasWheelChairSpaces() {
return hasWheelChairSpaces;
}
/**
* Sets the value of the hasWheelChairSpaces property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setHasWheelChairSpaces(Boolean value) {
this.hasWheelChairSpaces = value;
}
/**
* Gets the value of the numberOfWheelchairAreas property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getNumberOfWheelchairAreas() {
return numberOfWheelchairAreas;
}
/**
* Sets the value of the numberOfWheelchairAreas property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setNumberOfWheelchairAreas(BigInteger value) {
this.numberOfWheelchairAreas = value;
}
/**
* Gets the value of the widthOfAccessArea property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getWidthOfAccessArea() {
return widthOfAccessArea;
}
/**
* Sets the value of the widthOfAccessArea property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setWidthOfAccessArea(BigDecimal value) {
this.widthOfAccessArea = value;
}
/**
* Gets the value of the lengthOfAccessArea property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getLengthOfAccessArea() {
return lengthOfAccessArea;
}
/**
* Sets the value of the lengthOfAccessArea property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setLengthOfAccessArea(BigDecimal value) {
this.lengthOfAccessArea = value;
}
/**
* Gets the value of the heightOfAccessArea property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getHeightOfAccessArea() {
return heightOfAccessArea;
}
/**
* Sets the value of the heightOfAccessArea property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setHeightOfAccessArea(BigDecimal value) {
this.heightOfAccessArea = value;
}
/**
* Gets the value of the wheelchairTurningCircle property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getWheelchairTurningCircle() {
return wheelchairTurningCircle;
}
/**
* Sets the value of the wheelchairTurningCircle property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setWheelchairTurningCircle(BigDecimal value) {
this.wheelchairTurningCircle = value;
}
/**
* Gets the value of the companionSeat property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isCompanionSeat() {
return companionSeat;
}
/**
* Sets the value of the companionSeat property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setCompanionSeat(Boolean value) {
this.companionSeat = value;
}
public WheelchairVehicleEquipment_VersionStructure withHasWheelChairSpaces(Boolean value) {
setHasWheelChairSpaces(value);
return this;
}
public WheelchairVehicleEquipment_VersionStructure withNumberOfWheelchairAreas(BigInteger value) {
setNumberOfWheelchairAreas(value);
return this;
}
public WheelchairVehicleEquipment_VersionStructure withWidthOfAccessArea(BigDecimal value) {
setWidthOfAccessArea(value);
return this;
}
public WheelchairVehicleEquipment_VersionStructure withLengthOfAccessArea(BigDecimal value) {
setLengthOfAccessArea(value);
return this;
}
public WheelchairVehicleEquipment_VersionStructure withHeightOfAccessArea(BigDecimal value) {
setHeightOfAccessArea(value);
return this;
}
public WheelchairVehicleEquipment_VersionStructure withWheelchairTurningCircle(BigDecimal value) {
setWheelchairTurningCircle(value);
return this;
}
public WheelchairVehicleEquipment_VersionStructure withCompanionSeat(Boolean value) {
setCompanionSeat(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withUnits(BigInteger value) {
setUnits(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withVehicleTypeRef(JAXBElement extends VehicleTypeRefStructure> value) {
setVehicleTypeRef(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withEquipmentRef(JAXBElement extends EquipmentRefStructure> value) {
setEquipmentRef(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withAccessibilityAssessment(AccessibilityAssessment value) {
setAccessibilityAssessment(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withFixed(Boolean value) {
setFixed(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withName(MultilingualString value) {
setName(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withPrivateCode(PrivateCodeStructure value) {
setPrivateCode(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withPublicCode(PrivateCodeStructure value) {
setPublicCode(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withImage(String value) {
setImage(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withTypeOfEquipmentRef(TypeOfEquipmentRefStructure value) {
setTypeOfEquipmentRef(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withDescription(MultilingualString value) {
setDescription(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withNote(MultilingualString value) {
setNote(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withOutOfService(Boolean value) {
setOutOfService(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withKeyList(KeyListStructure value) {
setKeyList(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withExtensions(ExtensionsStructure value) {
setExtensions(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withBrandingRef(BrandingRefStructure value) {
setBrandingRef(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withAlternativeTexts(AlternativeTexts_RelStructure value) {
setAlternativeTexts(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withResponsibilitySetRef(String value) {
setResponsibilitySetRef(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withValidityConditions(ValidityConditions_RelStructure value) {
setValidityConditions(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withValidBetween(ValidBetween... values) {
if (values!= null) {
for (ValidBetween value: values) {
getValidBetween().add(value);
}
}
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withValidBetween(Collection values) {
if (values!= null) {
getValidBetween().addAll(values);
}
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withDataSourceRef(String value) {
setDataSourceRef(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withCreated(OffsetDateTime value) {
setCreated(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withChanged(OffsetDateTime value) {
setChanged(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withModification(ModificationEnumeration value) {
setModification(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withVersion(String value) {
setVersion(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withStatus_BasicModificationDetailsGroup(StatusEnumeration value) {
setStatus_BasicModificationDetailsGroup(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withDerivedFromVersionRef_BasicModificationDetailsGroup(String value) {
setDerivedFromVersionRef_BasicModificationDetailsGroup(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withCompatibleWithVersionFrameVersionRef(String value) {
setCompatibleWithVersionFrameVersionRef(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withDerivedFromObjectRef(String value) {
setDerivedFromObjectRef(value);
return this;
}
@Override
public WheelchairVehicleEquipment_VersionStructure withNameOfClass(String value) {
setNameOfClass(value);
return this;
}
@Override
public WheelchairVehicleEquipment_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