org.rutebanken.netex.model.LiftEquipment_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.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 LiftEquipment_VersionStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="LiftEquipment_VersionStructure">
* <complexContent>
* <extension base="{http://www.netex.org.uk/netex}AccessEquipment_VersionStructure">
* <sequence>
* <group ref="{http://www.netex.org.uk/netex}LiftEquipmentGroup"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LiftEquipment_VersionStructure", propOrder = {
"depth",
"maximumLoad",
"wheelchairPasssable",
"wheelchairTurningCircle",
"internalWidth",
"handrailType",
"handrailHeight",
"lowerHandrailHeight",
"callButtonHeight",
"directionButtonHeight",
"raisedButtons",
"brailleButtons",
"throughLoader",
"mirrorOnOppositeSide",
"attendant",
"automatic",
"alarmButton",
"tactileActuators",
"accousticAnnouncements",
"signageToLift",
"suitableForCycles"
})
@XmlSeeAlso({
LiftEquipment.class
})
public class LiftEquipment_VersionStructure
extends AccessEquipment_VersionStructure
{
@XmlElement(name = "Depth")
protected BigDecimal depth;
@XmlElement(name = "MaximumLoad")
protected BigDecimal maximumLoad;
@XmlElement(name = "WheelchairPasssable")
protected Boolean wheelchairPasssable;
@XmlElement(name = "WheelchairTurningCircle")
protected BigDecimal wheelchairTurningCircle;
@XmlElement(name = "InternalWidth")
protected BigDecimal internalWidth;
@XmlElement(name = "HandrailType")
@XmlSchemaType(name = "string")
protected HandrailEnumeration handrailType;
@XmlElement(name = "HandrailHeight")
protected BigDecimal handrailHeight;
@XmlElement(name = "LowerHandrailHeight")
protected BigDecimal lowerHandrailHeight;
@XmlElement(name = "CallButtonHeight")
protected BigDecimal callButtonHeight;
@XmlElement(name = "DirectionButtonHeight")
protected BigDecimal directionButtonHeight;
@XmlElement(name = "RaisedButtons")
protected Boolean raisedButtons;
@XmlElement(name = "BrailleButtons")
protected Boolean brailleButtons;
@XmlElement(name = "ThroughLoader")
protected Boolean throughLoader;
@XmlElement(name = "MirrorOnOppositeSide")
protected Boolean mirrorOnOppositeSide;
@XmlElement(name = "Attendant")
protected Boolean attendant;
@XmlElement(name = "Automatic")
protected Boolean automatic;
@XmlElement(name = "AlarmButton")
protected Boolean alarmButton;
@XmlElement(name = "TactileActuators")
protected Boolean tactileActuators;
@XmlElement(name = "AccousticAnnouncements")
protected Boolean accousticAnnouncements;
@XmlElement(name = "SignageToLift")
protected Boolean signageToLift;
@XmlElement(name = "SuitableForCycles")
protected Boolean suitableForCycles;
/**
* Gets the value of the depth property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getDepth() {
return depth;
}
/**
* Sets the value of the depth property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setDepth(BigDecimal value) {
this.depth = value;
}
/**
* Gets the value of the maximumLoad property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getMaximumLoad() {
return maximumLoad;
}
/**
* Sets the value of the maximumLoad property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setMaximumLoad(BigDecimal value) {
this.maximumLoad = value;
}
/**
* Gets the value of the wheelchairPasssable property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isWheelchairPasssable() {
return wheelchairPasssable;
}
/**
* Sets the value of the wheelchairPasssable property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setWheelchairPasssable(Boolean value) {
this.wheelchairPasssable = 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 internalWidth property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getInternalWidth() {
return internalWidth;
}
/**
* Sets the value of the internalWidth property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setInternalWidth(BigDecimal value) {
this.internalWidth = value;
}
/**
* Gets the value of the handrailType property.
*
* @return
* possible object is
* {@link HandrailEnumeration }
*
*/
public HandrailEnumeration getHandrailType() {
return handrailType;
}
/**
* Sets the value of the handrailType property.
*
* @param value
* allowed object is
* {@link HandrailEnumeration }
*
*/
public void setHandrailType(HandrailEnumeration value) {
this.handrailType = value;
}
/**
* Gets the value of the handrailHeight property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getHandrailHeight() {
return handrailHeight;
}
/**
* Sets the value of the handrailHeight property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setHandrailHeight(BigDecimal value) {
this.handrailHeight = value;
}
/**
* Gets the value of the lowerHandrailHeight property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getLowerHandrailHeight() {
return lowerHandrailHeight;
}
/**
* Sets the value of the lowerHandrailHeight property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setLowerHandrailHeight(BigDecimal value) {
this.lowerHandrailHeight = value;
}
/**
* Gets the value of the callButtonHeight property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getCallButtonHeight() {
return callButtonHeight;
}
/**
* Sets the value of the callButtonHeight property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setCallButtonHeight(BigDecimal value) {
this.callButtonHeight = value;
}
/**
* Gets the value of the directionButtonHeight property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getDirectionButtonHeight() {
return directionButtonHeight;
}
/**
* Sets the value of the directionButtonHeight property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setDirectionButtonHeight(BigDecimal value) {
this.directionButtonHeight = value;
}
/**
* Gets the value of the raisedButtons property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isRaisedButtons() {
return raisedButtons;
}
/**
* Sets the value of the raisedButtons property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setRaisedButtons(Boolean value) {
this.raisedButtons = value;
}
/**
* Gets the value of the brailleButtons property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isBrailleButtons() {
return brailleButtons;
}
/**
* Sets the value of the brailleButtons property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setBrailleButtons(Boolean value) {
this.brailleButtons = value;
}
/**
* Gets the value of the throughLoader property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isThroughLoader() {
return throughLoader;
}
/**
* Sets the value of the throughLoader property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setThroughLoader(Boolean value) {
this.throughLoader = value;
}
/**
* Gets the value of the mirrorOnOppositeSide property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isMirrorOnOppositeSide() {
return mirrorOnOppositeSide;
}
/**
* Sets the value of the mirrorOnOppositeSide property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setMirrorOnOppositeSide(Boolean value) {
this.mirrorOnOppositeSide = value;
}
/**
* Gets the value of the attendant property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isAttendant() {
return attendant;
}
/**
* Sets the value of the attendant property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setAttendant(Boolean value) {
this.attendant = value;
}
/**
* Gets the value of the automatic property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isAutomatic() {
return automatic;
}
/**
* Sets the value of the automatic property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setAutomatic(Boolean value) {
this.automatic = value;
}
/**
* Gets the value of the alarmButton property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isAlarmButton() {
return alarmButton;
}
/**
* Sets the value of the alarmButton property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setAlarmButton(Boolean value) {
this.alarmButton = value;
}
/**
* Gets the value of the tactileActuators property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isTactileActuators() {
return tactileActuators;
}
/**
* Sets the value of the tactileActuators property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setTactileActuators(Boolean value) {
this.tactileActuators = value;
}
/**
* Gets the value of the accousticAnnouncements property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isAccousticAnnouncements() {
return accousticAnnouncements;
}
/**
* Sets the value of the accousticAnnouncements property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setAccousticAnnouncements(Boolean value) {
this.accousticAnnouncements = value;
}
/**
* Gets the value of the signageToLift property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isSignageToLift() {
return signageToLift;
}
/**
* Sets the value of the signageToLift property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setSignageToLift(Boolean value) {
this.signageToLift = 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 LiftEquipment_VersionStructure withDepth(BigDecimal value) {
setDepth(value);
return this;
}
public LiftEquipment_VersionStructure withMaximumLoad(BigDecimal value) {
setMaximumLoad(value);
return this;
}
public LiftEquipment_VersionStructure withWheelchairPasssable(Boolean value) {
setWheelchairPasssable(value);
return this;
}
public LiftEquipment_VersionStructure withWheelchairTurningCircle(BigDecimal value) {
setWheelchairTurningCircle(value);
return this;
}
public LiftEquipment_VersionStructure withInternalWidth(BigDecimal value) {
setInternalWidth(value);
return this;
}
public LiftEquipment_VersionStructure withHandrailType(HandrailEnumeration value) {
setHandrailType(value);
return this;
}
public LiftEquipment_VersionStructure withHandrailHeight(BigDecimal value) {
setHandrailHeight(value);
return this;
}
public LiftEquipment_VersionStructure withLowerHandrailHeight(BigDecimal value) {
setLowerHandrailHeight(value);
return this;
}
public LiftEquipment_VersionStructure withCallButtonHeight(BigDecimal value) {
setCallButtonHeight(value);
return this;
}
public LiftEquipment_VersionStructure withDirectionButtonHeight(BigDecimal value) {
setDirectionButtonHeight(value);
return this;
}
public LiftEquipment_VersionStructure withRaisedButtons(Boolean value) {
setRaisedButtons(value);
return this;
}
public LiftEquipment_VersionStructure withBrailleButtons(Boolean value) {
setBrailleButtons(value);
return this;
}
public LiftEquipment_VersionStructure withThroughLoader(Boolean value) {
setThroughLoader(value);
return this;
}
public LiftEquipment_VersionStructure withMirrorOnOppositeSide(Boolean value) {
setMirrorOnOppositeSide(value);
return this;
}
public LiftEquipment_VersionStructure withAttendant(Boolean value) {
setAttendant(value);
return this;
}
public LiftEquipment_VersionStructure withAutomatic(Boolean value) {
setAutomatic(value);
return this;
}
public LiftEquipment_VersionStructure withAlarmButton(Boolean value) {
setAlarmButton(value);
return this;
}
public LiftEquipment_VersionStructure withTactileActuators(Boolean value) {
setTactileActuators(value);
return this;
}
public LiftEquipment_VersionStructure withAccousticAnnouncements(Boolean value) {
setAccousticAnnouncements(value);
return this;
}
public LiftEquipment_VersionStructure withSignageToLift(Boolean value) {
setSignageToLift(value);
return this;
}
public LiftEquipment_VersionStructure withSuitableForCycles(Boolean value) {
setSuitableForCycles(value);
return this;
}
@Override
public LiftEquipment_VersionStructure withWidth(BigDecimal value) {
setWidth(value);
return this;
}
@Override
public LiftEquipment_VersionStructure withDirectionOfUse(DirectionOfUseEnumeration value) {
setDirectionOfUse(value);
return this;
}
@Override
public LiftEquipment_VersionStructure withPassengersPerMinute(BigInteger value) {
setPassengersPerMinute(value);
return this;
}
@Override
public LiftEquipment_VersionStructure withRelativeWeighting(BigInteger value) {
setRelativeWeighting(value);
return this;
}
@Override
public LiftEquipment_VersionStructure withName(MultilingualString value) {
setName(value);
return this;
}
@Override
public LiftEquipment_VersionStructure withPrivateCode(PrivateCodeStructure value) {
setPrivateCode(value);
return this;
}
@Override
public LiftEquipment_VersionStructure withPublicCode(PrivateCodeStructure value) {
setPublicCode(value);
return this;
}
@Override
public LiftEquipment_VersionStructure withImage(String value) {
setImage(value);
return this;
}
@Override
public LiftEquipment_VersionStructure withTypeOfEquipmentRef(TypeOfEquipmentRefStructure value) {
setTypeOfEquipmentRef(value);
return this;
}
@Override
public LiftEquipment_VersionStructure withDescription(MultilingualString value) {
setDescription(value);
return this;
}
@Override
public LiftEquipment_VersionStructure withNote(MultilingualString value) {
setNote(value);
return this;
}
@Override
public LiftEquipment_VersionStructure withOutOfService(Boolean value) {
setOutOfService(value);
return this;
}
@Override
public LiftEquipment_VersionStructure withKeyList(KeyListStructure value) {
setKeyList(value);
return this;
}
@Override
public LiftEquipment_VersionStructure withExtensions(ExtensionsStructure value) {
setExtensions(value);
return this;
}
@Override
public LiftEquipment_VersionStructure withBrandingRef(BrandingRefStructure value) {
setBrandingRef(value);
return this;
}
@Override
public LiftEquipment_VersionStructure withAlternativeTexts(AlternativeTexts_RelStructure value) {
setAlternativeTexts(value);
return this;
}
@Override
public LiftEquipment_VersionStructure withResponsibilitySetRef(String value) {
setResponsibilitySetRef(value);
return this;
}
@Override
public LiftEquipment_VersionStructure withValidityConditions(ValidityConditions_RelStructure value) {
setValidityConditions(value);
return this;
}
@Override
public LiftEquipment_VersionStructure withValidBetween(ValidBetween... values) {
if (values!= null) {
for (ValidBetween value: values) {
getValidBetween().add(value);
}
}
return this;
}
@Override
public LiftEquipment_VersionStructure withValidBetween(Collection values) {
if (values!= null) {
getValidBetween().addAll(values);
}
return this;
}
@Override
public LiftEquipment_VersionStructure withDataSourceRef(String value) {
setDataSourceRef(value);
return this;
}
@Override
public LiftEquipment_VersionStructure withCreated(OffsetDateTime value) {
setCreated(value);
return this;
}
@Override
public LiftEquipment_VersionStructure withChanged(OffsetDateTime value) {
setChanged(value);
return this;
}
@Override
public LiftEquipment_VersionStructure withModification(ModificationEnumeration value) {
setModification(value);
return this;
}
@Override
public LiftEquipment_VersionStructure withVersion(String value) {
setVersion(value);
return this;
}
@Override
public LiftEquipment_VersionStructure withStatus_BasicModificationDetailsGroup(StatusEnumeration value) {
setStatus_BasicModificationDetailsGroup(value);
return this;
}
@Override
public LiftEquipment_VersionStructure withDerivedFromVersionRef_BasicModificationDetailsGroup(String value) {
setDerivedFromVersionRef_BasicModificationDetailsGroup(value);
return this;
}
@Override
public LiftEquipment_VersionStructure withCompatibleWithVersionFrameVersionRef(String value) {
setCompatibleWithVersionFrameVersionRef(value);
return this;
}
@Override
public LiftEquipment_VersionStructure withDerivedFromObjectRef(String value) {
setDerivedFromObjectRef(value);
return this;
}
@Override
public LiftEquipment_VersionStructure withNameOfClass(String value) {
setNameOfClass(value);
return this;
}
@Override
public LiftEquipment_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