Uses of Interface
org.goplanit.output.formatter.OutputFormatter
-
Packages that use OutputFormatter Package Description org.goplanit.assignment Traffic assignment classesorg.goplanit.io.output.formatter PLANit IO output formatter packageorg.goplanit.output output writer related classesorg.goplanit.output.formatter output formatter related classesorg.goplanit.project PLANit project classesorg.goplanit.tntp.output.formatter CSV output formatter used for TNTP results output -
-
Uses of OutputFormatter in org.goplanit.assignment
Methods in org.goplanit.assignment that return types with arguments of type OutputFormatter Modifier and Type Method Description List<OutputFormatter>
TrafficAssignmentConfigurator. getOutputFormatters()
Returns a list of output formatters registered on this assignmentMethods in org.goplanit.assignment with parameters of type OutputFormatter Modifier and Type Method Description void
TrafficAssignmentConfigurator. registerOutputFormatter(OutputFormatter outputFormatter)
Register an output formattervoid
TrafficAssignmentConfigurator. unregisterOutputFormatter(OutputFormatter outputFormatter)
Remove an output formatter which has already been registered This is used by the Python interface, which registers the PlanItIO formatter by default -
Uses of OutputFormatter in org.goplanit.io.output.formatter
Classes in org.goplanit.io.output.formatter that implement OutputFormatter Modifier and Type Class Description class
PlanItOutputFormatter
The default output formatter of PlanIt -
Uses of OutputFormatter in org.goplanit.output
Methods in org.goplanit.output that return types with arguments of type OutputFormatter Modifier and Type Method Description List<OutputFormatter>
OutputManager. getOutputFormatters()
Returns the list of currently registered OutputFormatter objects for a specified output typeMethods in org.goplanit.output with parameters of type OutputFormatter Modifier and Type Method Description void
OutputManager. registerOutputFormatter(OutputFormatter outputFormatter)
Register the output formatter on the output manager.void
OutputManager. unregisterOutputFormatter(OutputFormatter outputFormatter)
Remove an output formatter which has previously been registered -
Uses of OutputFormatter in org.goplanit.output.formatter
Classes in org.goplanit.output.formatter that implement OutputFormatter Modifier and Type Class Description class
BaseOutputFormatter
Base class for all formatters of output data, i.e.class
CsvFileOutputFormatter
Class containing common methods required by classes which write results to CSV output filesclass
FileOutputFormatter
Common methods used by output formatters which write data to physical filesclass
MemoryOutputFormatter
OutputFormatter which stores data in memory, using specified keys and output properties.Methods in org.goplanit.output.formatter that return OutputFormatter Modifier and Type Method Description static OutputFormatter
OutputFormatterFactory. createOutputFormatter(String OutputFormatterCanonicalClassName)
Create an output formatter based on the passed in class name -
Uses of OutputFormatter in org.goplanit.project
Fields in org.goplanit.project with type parameters of type OutputFormatter Modifier and Type Field Description protected TreeMap<Long,OutputFormatter>
CustomPlanItProject. outputFormatters
The output formatter(s) registered on this projectMethods in org.goplanit.project that return OutputFormatter Modifier and Type Method Description OutputFormatter
CustomPlanItProject. createAndRegisterOutputFormatter(String outputFormatterType)
Create and register an output formatter instance of a given typeOutputFormatter
CustomPlanItProject. getOutputFormatter(long id)
Retrieve an output formatter object given its id -
Uses of OutputFormatter in org.goplanit.tntp.output.formatter
Classes in org.goplanit.tntp.output.formatter that implement OutputFormatter Modifier and Type Class Description class
CSVOutputFormatter
Output formatter for CSV output, i.e.
-