Class TntpNetworkReaderSettings
- java.lang.Object
-
- org.goplanit.tntp.converter.network.TntpNetworkReaderSettings
-
- All Implemented Interfaces:
ConverterReaderSettings
public class TntpNetworkReaderSettings extends Object implements ConverterReaderSettings
Settings for Tntp network reader- Author:
- gman, markr
-
-
Constructor Summary
Constructors Constructor Description TntpNetworkReaderSettings()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CapacityPeriod
getCapacityPeriod()
double
getDefaultMaximumSpeed()
LengthUnits
getLengthUnits()
Map<NetworkFileColumnType,Integer>
getNetworkFileColumns()
MacroscopicNetwork
getNetworkToPopulate()
SpeedUnits
getSpeedUnits()
void
reset()
be able to reset all settings if neededvoid
setCapacityPeriod(CapacityPeriod capacityPeriod)
void
setDefaultMaximumSpeed(double defaultMaximumSpeed)
void
setLengthUnits(LengthUnits lengthUnits)
void
setNetworkFileColumns(Map<NetworkFileColumnType,Integer> networkFileColumns)
void
setNetworkToPopulate(MacroscopicNetwork networkToPopulate)
void
setSpeedUnits(SpeedUnits speedUnits)
-
-
-
Method Detail
-
reset
public void reset()
be able to reset all settings if needed- Specified by:
reset
in interfaceConverterReaderSettings
-
getNetworkFileColumns
public Map<NetworkFileColumnType,Integer> getNetworkFileColumns()
-
setNetworkFileColumns
public void setNetworkFileColumns(Map<NetworkFileColumnType,Integer> networkFileColumns)
-
getSpeedUnits
public SpeedUnits getSpeedUnits()
-
setSpeedUnits
public void setSpeedUnits(SpeedUnits speedUnits)
-
getLengthUnits
public LengthUnits getLengthUnits()
-
setLengthUnits
public void setLengthUnits(LengthUnits lengthUnits)
-
getCapacityPeriod
public CapacityPeriod getCapacityPeriod()
-
setCapacityPeriod
public void setCapacityPeriod(CapacityPeriod capacityPeriod)
-
getDefaultMaximumSpeed
public double getDefaultMaximumSpeed()
-
setDefaultMaximumSpeed
public void setDefaultMaximumSpeed(double defaultMaximumSpeed)
-
getNetworkToPopulate
public MacroscopicNetwork getNetworkToPopulate()
-
setNetworkToPopulate
public void setNetworkToPopulate(MacroscopicNetwork networkToPopulate)
-
-