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 voidTrafficAssignmentConfigurator. registerOutputFormatter(OutputFormatter outputFormatter)Register an output formattervoidTrafficAssignmentConfigurator. 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 classPlanItOutputFormatterThe 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 voidOutputManager. registerOutputFormatter(OutputFormatter outputFormatter)Register the output formatter on the output manager.voidOutputManager. 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 classBaseOutputFormatterBase class for all formatters of output data, i.e.classCsvFileOutputFormatterClass containing common methods required by classes which write results to CSV output filesclassFileOutputFormatterCommon methods used by output formatters which write data to physical filesclassMemoryOutputFormatterOutputFormatter 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 OutputFormatterOutputFormatterFactory. 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. outputFormattersThe output formatter(s) registered on this projectMethods in org.goplanit.project that return OutputFormatter Modifier and Type Method Description OutputFormatterCustomPlanItProject. createAndRegisterOutputFormatter(String outputFormatterType)Create and register an output formatter instance of a given typeOutputFormatterCustomPlanItProject. 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 classCSVOutputFormatterOutput formatter for CSV output, i.e.
-