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

org.opentripplanner.model.Pathway Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
/* This file is based on code copied from project OneBusAway, see the LICENSE file for further information. */
package org.opentripplanner.model;

public final class Pathway extends TransitEntity {

    private static final long serialVersionUID = -2404871423254094109L;

    private FeedScopedId id;

    private int pathwayMode;

    private StationElement fromStop;

    private StationElement toStop;

    private String name;

    private String reversedName;

    private int traversalTime;

    private double length;

    private int stairCount;

    private double slope;

    private boolean isBidirectional;

    @Override
    public FeedScopedId getId() {
        return id;
    }

    @Override
    public void setId(FeedScopedId id) {
        this.id = id;
    }

    public void setPathwayMode(int pathwayMode) {
        this.pathwayMode = pathwayMode;
    }

    public int getPathwayMode() {
        return pathwayMode;
    }

    public void setFromStop(StationElement fromStop) {
        this.fromStop = fromStop;
    }

    public StationElement getFromStop() {
        return fromStop;
    }

    public void setToStop(StationElement toStop) {
        this.toStop = toStop;
    }

    public StationElement getToStop() {
        return toStop;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getReversedName() {
        return reversedName;
    }

    public void setReversedName(String reversedName) {
        this.reversedName = reversedName;
    }

    public void setTraversalTime(int traversalTime) {
        this.traversalTime = traversalTime;
    }

    public int getTraversalTime() {
        return traversalTime;
    }

    public double getLength() {
        return length;
    }

    public void setLength(double length) {
        this.length = length;
    }

    public boolean isBidirectional() {
        return isBidirectional;
    }

    public void setBidirectional(boolean bidirectional) {
        isBidirectional = bidirectional;
    }

    public int getStairCount() {
        return stairCount;
    }

    public void setStairCount(int stairCount) {
        this.stairCount = stairCount;
    }

    public double getSlope() {
        return slope;
    }

    public void setSlope(double slope) {
        this.slope = slope;
    }

    @Override
    public String toString() {
        return "";
    }

    public boolean isPathwayModeWheelchairAccessible() {
        return getPathwayMode() != 2 && getPathwayMode() != 4;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy