Uses of Interface
org.planit.output.formatter.OutputFormatter
-
Packages that use OutputFormatter Package Description org.planit.io.output.formatter PLANit IO output formatter packageorg.planit.output output writer related classesorg.planit.output.formatter output formatter related classesorg.planit.project PLANit project classesorg.planit.trafficassignment Traffic assignment classesorg.planit.trafficassignment.builder Traffic assignment builder classes -
-
Uses of OutputFormatter in org.planit.io.output.formatter
Classes in org.planit.io.output.formatter that implement OutputFormatter Modifier and Type Class Description classPlanItOutputFormatterThe default output formatter of PlanIt -
Uses of OutputFormatter in org.planit.output
Methods in org.planit.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.planit.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.planit.output.formatter
Classes in org.planit.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.planit.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.planit.project
Fields in org.planit.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.planit.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.planit.trafficassignment
Methods in org.planit.trafficassignment that return types with arguments of type OutputFormatter Modifier and Type Method Description List<OutputFormatter>TrafficAssignment. getOutputFormatters()Returns a list of output formatters registered on this assignmentMethods in org.planit.trafficassignment with parameters of type OutputFormatter Modifier and Type Method Description voidTrafficAssignment. registerOutputFormatter(OutputFormatter outputFormatter)Register the output formatter on the assignmentvoidTrafficAssignment. unregisterOutputFormatter(OutputFormatter outputFormatter)Unregister an output formatter -
Uses of OutputFormatter in org.planit.trafficassignment.builder
Methods in org.planit.trafficassignment.builder that return types with arguments of type OutputFormatter Modifier and Type Method Description List<OutputFormatter>TrafficAssignmentBuilder. getOutputFormatters()Returns a list of output formatters registered on this assignmentMethods in org.planit.trafficassignment.builder with parameters of type OutputFormatter Modifier and Type Method Description voidTrafficAssignmentBuilder. registerOutputFormatter(OutputFormatter outputFormatter)Register an output formattervoidTrafficAssignmentBuilder. 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
-