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

edu.kit.ifv.mobitopp.simulation.publictransport.profilescan.TransferEntry Maven / Gradle / Ivy

Go to download

mobiTopp (http://mobitopp.ifv.kit.edu/) is an agent-based travel demand model developed at the Institute for transport studies at the Karlsruhe Institute of Technology (http://www.ifv.kit.edu/english/index.php). Publications about mobiTopp can be found on the project site (http://mobitopp.ifv.kit.edu/28.php).

The newest version!
package edu.kit.ifv.mobitopp.simulation.publictransport.profilescan;

import edu.kit.ifv.mobitopp.time.Time;

public class TransferEntry {

	private final Time departure;
	private final Time arrivalAtTarget;

	public TransferEntry(Time departure, Time arrivalAtTarget) {
		super();
		this.departure = departure;
		this.arrivalAtTarget = arrivalAtTarget;
	}

	public Time departure() {
		return departure;
	}

	public Time arrival() {
		return arrivalAtTarget;
	}

	@Override
	public String toString() {
		return "TransferEntry [departure=" + departure + ", arrivalAtTarget=" + arrivalAtTarget + "]";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy