org.opentripplanner.api.model.ApiTripTimeShort Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
package org.opentripplanner.api.model;
import java.io.Serializable;
public class ApiTripTimeShort implements Serializable {
private static final long serialVersionUID = 1L;
private static final int UNDEFINED = -1;
public String stopId;
public int stopIndex;
public int stopCount;
public int scheduledArrival = UNDEFINED ;
public int scheduledDeparture = UNDEFINED ;
public int realtimeArrival = UNDEFINED ;
public int realtimeDeparture = UNDEFINED ;
public int arrivalDelay = UNDEFINED ;
public int departureDelay = UNDEFINED ;
public boolean timepoint = false;
public boolean realtime = false;
public ApiRealTimeState realtimeState = ApiRealTimeState.SCHEDULED ;
public long serviceDay;
public String tripId;
public String blockId;
public String headsign;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy