Package | Description |
---|---|
org.transitime.core |
Contains the core classes that process the AVL data and create predictions,
arrival/departure times, headway, etc.
|
org.transitime.db.structs |
Contains the descriptions of the classes for the objects that are read
and written to the database.
|
org.transitime.gtfs |
Contains classes for reading and writing GTFS configuration data.
|
org.transitime.ipc.data |
This package contains the low-level objects that are transmitted to
the clients via RMI.
|
Modifier and Type | Method and Description |
---|---|
StopPath |
SpatialMatch.getStopPath() |
Modifier and Type | Method and Description |
---|---|
StopPath |
Block.getPreviousPath(int tripIndex,
int stopPathIndex)
Returns the previous path specified by tripIndex and stopPathIndex
params.
|
StopPath |
TripPattern.getStopPath(int index) |
StopPath |
Trip.getStopPath(int stopPathIndex)
Returns the StopPath for the stopPathIndex specified
|
StopPath |
Block.getStopPath(int tripIndex,
int stopPathIndex)
Returns the path specified by tripIndex and stopPathIndex params.
|
StopPath |
TripPattern.getStopPath(java.lang.String stopId)
Returns the StopPath for this TripPattern as specified by the stopId
parameter.
|
StopPath |
Trip.getStopPath(java.lang.String stopId)
Returns the StopPath specified by the stopId.
|
Modifier and Type | Method and Description |
---|---|
static java.util.List<StopPath> |
StopPath.getPaths(org.hibernate.Session session,
int configRev)
Returns List of StopPath objects for the specified database revision.
|
java.util.List<StopPath> |
TripPatternKey.getStopPaths() |
java.util.List<StopPath> |
TripPattern.getStopPaths() |
java.util.List<StopPath> |
Trip.getStopPaths()
Returns the List of the stop paths for the trip pattern
|
Constructor and Description |
---|
TripPattern(int configRev,
java.lang.String shapeId,
java.util.List<StopPath> stopPaths,
Trip trip,
GtfsData gtfsData)
Create a TripPattern.
|
TripPatternKey(java.lang.String shapeId,
java.util.List<StopPath> paths)
Construct TripPatternBase.
|
Modifier and Type | Method and Description |
---|---|
StopPath |
GtfsData.getPath(java.lang.String tripPatternId,
java.lang.String pathId)
Returns the StopPath for the specified tripPatternId and pathId.
|
Modifier and Type | Method and Description |
---|---|
java.util.Collection<StopPath> |
GtfsData.getPaths() |
Modifier and Type | Method and Description |
---|---|
void |
GtfsData.putPath(java.lang.String tripPatternId,
java.lang.String pathId,
StopPath path)
Adds the StopPath object to the pathMap.
|
Constructor and Description |
---|
IpcStopPath(StopPath dbStopPath)
Member Functions
|