
de.vdv.ojp20.PathLinkEndStructure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ojp-java-model Show documentation
Show all versions of ojp-java-model Show documentation
Generates Java model from OJP xsds using jaxb.
The newest version!
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.5
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package de.vdv.ojp20;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.NormalizedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.opentripplanner.ojp.netex.OmitNullsToStringStyle;
/**
* Designations of a floor/level.
*
* Java class for PathLinkEndStructure complex type
.
*
* The following schema fragment specifies the expected content contained within this class.
*
* {@code
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PathLinkEndStructure", propOrder = {
"levelPublicCode",
"levelName",
"id"
})
public class PathLinkEndStructure {
/**
* Public identifier of the level as found on elevators and signs.
*
*/
@XmlElement(name = "LevelPublicCode")
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
@XmlSchemaType(name = "normalizedString")
protected String levelPublicCode;
/**
* Official name of the level.
*
*/
@XmlElement(name = "LevelName")
protected InternationalTextStructure levelName;
/**
* Id of the element at this end of the PathLink (typically a PLACE, e.g., where the elevator is located).
*
*/
@XmlElement(name = "Id")
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
@XmlSchemaType(name = "normalizedString")
protected String id;
/**
* Public identifier of the level as found on elevators and signs.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLevelPublicCode() {
return levelPublicCode;
}
/**
* Sets the value of the levelPublicCode property.
*
* @param value
* allowed object is
* {@link String }
*
* @see #getLevelPublicCode()
*/
public void setLevelPublicCode(String value) {
this.levelPublicCode = value;
}
/**
* Official name of the level.
*
* @return
* possible object is
* {@link InternationalTextStructure }
*
*/
public InternationalTextStructure getLevelName() {
return levelName;
}
/**
* Sets the value of the levelName property.
*
* @param value
* allowed object is
* {@link InternationalTextStructure }
*
* @see #getLevelName()
*/
public void setLevelName(InternationalTextStructure value) {
this.levelName = value;
}
/**
* Id of the element at this end of the PathLink (typically a PLACE, e.g., where the elevator is located).
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
* @see #getId()
*/
public void setId(String value) {
this.id = value;
}
public PathLinkEndStructure withLevelPublicCode(String value) {
setLevelPublicCode(value);
return this;
}
public PathLinkEndStructure withLevelName(InternationalTextStructure value) {
setLevelName(value);
return this;
}
public PathLinkEndStructure 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 - 2025 Weber Informatics LLC | Privacy Policy