Uses of Class
org.goplanit.tntp.enums.TimeUnits
-
Packages that use TimeUnits Package Description org.goplanit.tntp.converter.demands org.goplanit.tntp.converter.network org.goplanit.tntp.enums Enumerations used in the TNTP format input -
-
Uses of TimeUnits in org.goplanit.tntp.converter.demands
Fields in org.goplanit.tntp.converter.demands with type parameters of type TimeUnits Modifier and Type Field Description static Pair<Double,TimeUnits>
TntpDemandsReaderSettings. DEFAULT_START_TIME_PERIOD_8AM
default start time of time period since midnight is set to 8:00 hoursstatic Pair<Double,TimeUnits>
TntpDemandsReaderSettings. DEFAULT_TIME_PERIOD_DURATION
default time period duration is set to 1 hourMethods in org.goplanit.tntp.converter.demands that return TimeUnits Modifier and Type Method Description TimeUnits
TntpDemandsReaderSettings. getStartTimeSinceMidNightUnit()
TimeUnits
TntpDemandsReaderSettings. getTimePeriodDurationUnit()
Methods in org.goplanit.tntp.converter.demands with parameters of type TimeUnits Modifier and Type Method Description void
TntpDemandsReaderSettings. setStartTimeSinceMidnight(Number startTime, TimeUnits startTimeUnit)
void
TntpDemandsReaderSettings. setTimePeriodDuration(Number duration, TimeUnits durationUnit)
Constructors in org.goplanit.tntp.converter.demands with parameters of type TimeUnits Constructor Description TntpDemandsReaderSettings(String demandFileLocation, double duration, TimeUnits durationUnit)
Constructor -
Uses of TimeUnits in org.goplanit.tntp.converter.network
Fields in org.goplanit.tntp.converter.network with type parameters of type TimeUnits Modifier and Type Field Description static Pair<Double,TimeUnits>
TntpNetworkReaderSettings. DEFAULT_TIME_PERIOD_DURATION
default time period duration is set to 1 hourMethods in org.goplanit.tntp.converter.network that return TimeUnits Modifier and Type Method Description TimeUnits
TntpNetworkReaderSettings. getCapacityPeriodUnits()
TimeUnits
TntpNetworkReaderSettings. getFreeFlowTravelTimeUnits()
Methods in org.goplanit.tntp.converter.network with parameters of type TimeUnits Modifier and Type Method Description void
TntpNetworkReaderSettings. setCapacityPeriod(Number duration, TimeUnits units)
Determine how the capacity is defined in terms of units, e.g., 1, TimeUnits.Hour reflects that capacity is given in PCU volume per (1) hour.void
TntpNetworkReaderSettings. setFreeFlowTravelTimeUnits(TimeUnits freeFlowTravelTimeUnits)
Identify how to interpret the free flow travel time column units in the input file -
Uses of TimeUnits in org.goplanit.tntp.enums
Methods in org.goplanit.tntp.enums that return TimeUnits Modifier and Type Method Description static TimeUnits
TimeUnits. valueOf(String name)
Returns the enum constant of this type with the specified name.static TimeUnits[]
TimeUnits. values()
Returns an array containing the constants of this enum type, in the order they are declared.
-