org.rutebanken.netex.model.StairFlight_VersionedChildStructure 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 StairFlight_VersionedChildStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="StairFlight_VersionedChildStructure">
* <complexContent>
* <extension base="{http://www.netex.org.uk/netex}VersionedChildStructure">
* <sequence>
* <group ref="{http://www.netex.org.uk/netex}StairGroup"/>
* <element name="ContinuousHandrail" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StairFlight_VersionedChildStructure", propOrder = {
"depth",
"numberOfSteps",
"stepHeight",
"stepColourContrast",
"handrailType",
"handrailHeight",
"lowerHandrailHeight",
"topEnd",
"bottomEnd",
"continuousHandrail"
})
@XmlSeeAlso({
StairFlight.class
})
public class StairFlight_VersionedChildStructure
extends VersionedChildStructure
{
@XmlElement(name = "Depth")
protected BigDecimal depth;
@XmlElement(name = "NumberOfSteps")
@XmlSchemaType(name = "positiveInteger")
protected BigInteger numberOfSteps;
@XmlElement(name = "StepHeight")
protected BigDecimal stepHeight;
@XmlElement(name = "StepColourContrast")
protected Boolean stepColourContrast;
@XmlElement(name = "HandrailType")
@XmlSchemaType(name = "string")
protected HandrailEnumeration handrailType;
@XmlElement(name = "HandrailHeight")
protected BigDecimal handrailHeight;
@XmlElement(name = "LowerHandrailHeight")
protected BigDecimal lowerHandrailHeight;
@XmlElement(name = "TopEnd")
protected StairEndStructure topEnd;
@XmlElement(name = "BottomEnd")
protected StairEndStructure bottomEnd;
@XmlElement(name = "ContinuousHandrail")
protected Boolean continuousHandrail;
/**
* 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 numberOfSteps property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getNumberOfSteps() {
return numberOfSteps;
}
/**
* Sets the value of the numberOfSteps property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setNumberOfSteps(BigInteger value) {
this.numberOfSteps = value;
}
/**
* Gets the value of the stepHeight property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getStepHeight() {
return stepHeight;
}
/**
* Sets the value of the stepHeight property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setStepHeight(BigDecimal value) {
this.stepHeight = value;
}
/**
* Gets the value of the stepColourContrast property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isStepColourContrast() {
return stepColourContrast;
}
/**
* Sets the value of the stepColourContrast property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setStepColourContrast(Boolean value) {
this.stepColourContrast = 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 topEnd property.
*
* @return
* possible object is
* {@link StairEndStructure }
*
*/
public StairEndStructure getTopEnd() {
return topEnd;
}
/**
* Sets the value of the topEnd property.
*
* @param value
* allowed object is
* {@link StairEndStructure }
*
*/
public void setTopEnd(StairEndStructure value) {
this.topEnd = value;
}
/**
* Gets the value of the bottomEnd property.
*
* @return
* possible object is
* {@link StairEndStructure }
*
*/
public StairEndStructure getBottomEnd() {
return bottomEnd;
}
/**
* Sets the value of the bottomEnd property.
*
* @param value
* allowed object is
* {@link StairEndStructure }
*
*/
public void setBottomEnd(StairEndStructure value) {
this.bottomEnd = value;
}
/**
* Gets the value of the continuousHandrail property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isContinuousHandrail() {
return continuousHandrail;
}
/**
* Sets the value of the continuousHandrail property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setContinuousHandrail(Boolean value) {
this.continuousHandrail = value;
}
public StairFlight_VersionedChildStructure withDepth(BigDecimal value) {
setDepth(value);
return this;
}
public StairFlight_VersionedChildStructure withNumberOfSteps(BigInteger value) {
setNumberOfSteps(value);
return this;
}
public StairFlight_VersionedChildStructure withStepHeight(BigDecimal value) {
setStepHeight(value);
return this;
}
public StairFlight_VersionedChildStructure withStepColourContrast(Boolean value) {
setStepColourContrast(value);
return this;
}
public StairFlight_VersionedChildStructure withHandrailType(HandrailEnumeration value) {
setHandrailType(value);
return this;
}
public StairFlight_VersionedChildStructure withHandrailHeight(BigDecimal value) {
setHandrailHeight(value);
return this;
}
public StairFlight_VersionedChildStructure withLowerHandrailHeight(BigDecimal value) {
setLowerHandrailHeight(value);
return this;
}
public StairFlight_VersionedChildStructure withTopEnd(StairEndStructure value) {
setTopEnd(value);
return this;
}
public StairFlight_VersionedChildStructure withBottomEnd(StairEndStructure value) {
setBottomEnd(value);
return this;
}
public StairFlight_VersionedChildStructure withContinuousHandrail(Boolean value) {
setContinuousHandrail(value);
return this;
}
@Override
public StairFlight_VersionedChildStructure withExtensions(ExtensionsStructure value) {
setExtensions(value);
return this;
}
@Override
public StairFlight_VersionedChildStructure withValidityConditions(ValidityConditions_RelStructure value) {
setValidityConditions(value);
return this;
}
@Override
public StairFlight_VersionedChildStructure withValidBetween(ValidBetween... values) {
if (values!= null) {
for (ValidBetween value: values) {
getValidBetween().add(value);
}
}
return this;
}
@Override
public StairFlight_VersionedChildStructure withValidBetween(Collection values) {
if (values!= null) {
getValidBetween().addAll(values);
}
return this;
}
@Override
public StairFlight_VersionedChildStructure withDataSourceRef(String value) {
setDataSourceRef(value);
return this;
}
@Override
public StairFlight_VersionedChildStructure withCreated(OffsetDateTime value) {
setCreated(value);
return this;
}
@Override
public StairFlight_VersionedChildStructure withChanged(OffsetDateTime value) {
setChanged(value);
return this;
}
@Override
public StairFlight_VersionedChildStructure withModification(ModificationEnumeration value) {
setModification(value);
return this;
}
@Override
public StairFlight_VersionedChildStructure withVersion(String value) {
setVersion(value);
return this;
}
@Override
public StairFlight_VersionedChildStructure withStatus_BasicModificationDetailsGroup(StatusEnumeration value) {
setStatus_BasicModificationDetailsGroup(value);
return this;
}
@Override
public StairFlight_VersionedChildStructure withDerivedFromVersionRef_BasicModificationDetailsGroup(String value) {
setDerivedFromVersionRef_BasicModificationDetailsGroup(value);
return this;
}
@Override
public StairFlight_VersionedChildStructure withCompatibleWithVersionFrameVersionRef(String value) {
setCompatibleWithVersionFrameVersionRef(value);
return this;
}
@Override
public StairFlight_VersionedChildStructure withDerivedFromObjectRef(String value) {
setDerivedFromObjectRef(value);
return this;
}
@Override
public StairFlight_VersionedChildStructure withNameOfClass(String value) {
setNameOfClass(value);
return this;
}
@Override
public StairFlight_VersionedChildStructure 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