Package org.goplanit.converter
Interface ConverterReader<T>
- 
- Type Parameters:
- T- reader type
 - All Superinterfaces:
- ConverterEntity
 - All Known Subinterfaces:
- DemandsReader,- NetworkReader,- RoutedServicesReader,- ServiceNetworkReader,- ZoningReader
 - All Known Implementing Classes:
- BaseReaderImpl,- NetworkReaderImpl,- OsmNetworkReader,- OsmZoningReader,- PlanitDemandsReader,- PlanitNetworkReader,- PlanitRoutedServicesReader,- PlanitServiceNetworkReader,- PlanitZoningReader,- TntpDemandsReader,- TntpNetworkReader,- TntpZoningReader
 
 public interface ConverterReader<T> extends ConverterEntity Interface for classes able to convert entities of some type which are then returned- Author:
- markr
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description ConverterReaderSettingsgetSettings()any settings to configure the reader can be configured by collecting these settingsTread()parse the network based on the configuration of the implementing class to yield a PLANit network- 
Methods inherited from interface org.goplanit.converter.ConverterEntitygetTypeDescription, reset
 
- 
 
- 
- 
- 
Method Detail- 
getSettingsConverterReaderSettings getSettings() any settings to configure the reader can be configured by collecting these settings- Returns:
- the settings to configrue the reader
 
 - 
readT read() throws PlanItException parse the network based on the configuration of the implementing class to yield a PLANit network- Returns:
- parsed network
- Throws:
- PlanItException- thrown if error
 
 
- 
 
-