Module org.entur.netex.gtfs.export
Package org.entur.netex.gtfs.export.stop
Interface StopAreaRepository
- All Known Implementing Classes:
DefaultStopAreaRepository
public interface StopAreaRepository
A repository containing NeTEx quays and stop places.
-
Method Summary
Modifier and TypeMethodDescriptionCollection<org.rutebanken.netex.model.Quay> Return all quays in the repository.org.rutebanken.netex.model.QuaygetQuayById(String quayId) Return the Quay identified by its id.org.rutebanken.netex.model.StopPlacegetStopPlaceByQuayId(String quayId) Return the stop place associated to a given quay.
-
Method Details
-
getQuayById
Return the Quay identified by its id.- Parameters:
quayId- the quay id.- Returns:
- the quay identified by this id.
-
getStopPlaceByQuayId
Return the stop place associated to a given quay.- Parameters:
quayId- the id of the quay- Returns:
- the stop place that contains that quay.
-
getAllQuays
Collection<org.rutebanken.netex.model.Quay> getAllQuays()Return all quays in the repository.- Returns:
- all quays in the repository.
-