Package org.onebusaway.gtfs.model
Class RouteStop
- java.lang.Object
-
- org.onebusaway.gtfs.model.IdentityBean<Integer>
-
- org.onebusaway.gtfs.model.RouteStop
-
- All Implemented Interfaces:
Serializable,org.onebusaway.csv_entities.HasExtensions
public final class RouteStop extends IdentityBean<Integer>
experimental support for canonical/idealized route stops such as a strip map's representation of service- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RouteStop()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDirectionId()IntegergetId()StringgetName()StringgetRouteId()StringgetStopId()intgetStopSequence()voidsetDirectionId(String directionId)voidsetId(Integer id)voidsetName(String name)voidsetRouteId(String routeId)voidsetStopId(String stopId)voidsetStopSequence(int stopSequence)-
Methods inherited from class org.onebusaway.gtfs.model.IdentityBean
equals, getExtension, hashCode, putExtension
-
-
-
-
Method Detail
-
getRouteId
public String getRouteId()
-
setRouteId
public void setRouteId(String routeId)
-
getStopId
public String getStopId()
-
setStopId
public void setStopId(String stopId)
-
getStopSequence
public int getStopSequence()
-
setStopSequence
public void setStopSequence(int stopSequence)
-
getDirectionId
public String getDirectionId()
-
setDirectionId
public void setDirectionId(String directionId)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getId
public Integer getId()
- Specified by:
getIdin classIdentityBean<Integer>
-
setId
public void setId(Integer id)
- Specified by:
setIdin classIdentityBean<Integer>
-
-