Interface StopAreaRepository

All Known Implementing Classes:
DefaultStopAreaRepository

public interface StopAreaRepository
A repository containing NeTEx quays and stop places.
  • Method Summary

    Modifier and Type
    Method
    Description
    Collection<org.rutebanken.netex.model.Quay>
    Return all quays in the repository.
    org.rutebanken.netex.model.Quay
    Return the Quay identified by its id.
    org.rutebanken.netex.model.StopPlace
    Return the stop place associated to a given quay.
  • Method Details

    • getQuayById

      org.rutebanken.netex.model.Quay getQuayById(String quayId)
      Return the Quay identified by its id.
      Parameters:
      quayId - the quay id.
      Returns:
      the quay identified by this id.
    • getStopPlaceByQuayId

      org.rutebanken.netex.model.StopPlace getStopPlaceByQuayId(String quayId)
      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.