Package org.onebusaway.gtfs.model
Class Ridership
- java.lang.Object
-
- org.onebusaway.gtfs.model.IdentityBean<Integer>
-
- org.onebusaway.gtfs.model.Ridership
-
- All Implemented Interfaces:
Serializable,org.onebusaway.csv_entities.HasExtensions
public final class Ridership extends IdentityBean<Integer>
ridership.txt from https://github.com/ODOT-PTS/GTFS-ride/blob/master/spec/en/reference.md#board_alighttxt- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Ridership()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclearTotalAlightings()voidclearTotalBoardings()StringgetAgencyId()doublegetAverageLoad()ServiceDategetEndDate()IntegergetId()StringgetRouteId()ServiceDategetStartDate()StringgetStopId()intgetStopSequence()intgetTotalAlightings()intgetTotalBoardings()StringgetTripId()voidsetAgencyId(String id)voidsetAverageLoad(double averageLoad)voidsetEndDate(ServiceDate endDate)voidsetId(Integer id)voidsetRouteId(String routeId)voidsetStartDate(ServiceDate startDate)voidsetStopId(String stopId)voidsetStopSequence(int stopSequence)voidsetTotalAlightings(int totalAlightings)voidsetTotalBoardings(int totalBoardings)voidsetTripId(String tripId)StringtoString()-
Methods inherited from class org.onebusaway.gtfs.model.IdentityBean
equals, getExtension, hashCode, putExtension
-
-
-
-
Method Detail
-
getId
public Integer getId()
- Specified by:
getIdin classIdentityBean<Integer>
-
setId
public void setId(Integer id)
- Specified by:
setIdin classIdentityBean<Integer>
-
getAgencyId
public String getAgencyId()
-
setAgencyId
public void setAgencyId(String id)
-
getRouteId
public String getRouteId()
-
setRouteId
public void setRouteId(String routeId)
-
getTripId
public String getTripId()
-
setTripId
public void setTripId(String tripId)
-
getStopId
public String getStopId()
-
setStopId
public void setStopId(String stopId)
-
getTotalBoardings
public int getTotalBoardings()
-
setTotalBoardings
public void setTotalBoardings(int totalBoardings)
-
clearTotalBoardings
public void clearTotalBoardings()
-
getTotalAlightings
public int getTotalAlightings()
-
setTotalAlightings
public void setTotalAlightings(int totalAlightings)
-
clearTotalAlightings
public void clearTotalAlightings()
-
getStartDate
public ServiceDate getStartDate()
-
setStartDate
public void setStartDate(ServiceDate startDate)
-
getEndDate
public ServiceDate getEndDate()
-
setEndDate
public void setEndDate(ServiceDate endDate)
-
getAverageLoad
public double getAverageLoad()
-
setAverageLoad
public void setAverageLoad(double averageLoad)
-
getStopSequence
public int getStopSequence()
-
setStopSequence
public void setStopSequence(int stopSequence)
-
-