Uses of Interface
org.goplanit.output.enums.SubOutputTypeEnum
-
Packages that use SubOutputTypeEnum Package Description org.goplanit.output.adapter Output Adapter and Output Type Adapter classes and interfacesorg.goplanit.output.configuration output configuration related classesorg.goplanit.output.enums Enumerations containing possible values of output properties -
-
Uses of SubOutputTypeEnum in org.goplanit.output.adapter
Methods in org.goplanit.output.adapter with parameters of type SubOutputTypeEnum Modifier and Type Method Description Optional<Integer>
OdOutputTypeAdapterImpl. getIterationIndexForSubOutputType(SubOutputTypeEnum outputTypeEnum)
ODSkimOutputType.COST: Cost is collected through the shortest path in iteration i based on the link costs of iteration i-1, so the od cost of i-1 are only known once we are in iteration i, hence this information is trailing behind one iteration, and we can only store it in i.Optional<Integer>
OutputTypeAdapter. getIterationIndexForSubOutputType(SubOutputTypeEnum subOutputTypeEnum)
Determine the iteration index that is relevant for the data related to the provided output type enum Generally, this equates to the actual current iteration index, but if the data for example is trailing an iteration then this will collect the correct iteration index for this data as opposed to the iteration index of the simulation itself.Optional<Integer>
OutputTypeAdapterImpl. getIterationIndexForSubOutputType(SubOutputTypeEnum outputTypeEnum)
Default implementation assumes that regular iteration index is used, which in most cases it true, only when for example costs are trailing one iteration behind in case they are only revealed in the next iteration this method should be overridden -
Uses of SubOutputTypeEnum in org.goplanit.output.configuration
Fields in org.goplanit.output.configuration with type parameters of type SubOutputTypeEnum Modifier and Type Field Description protected Set<SubOutputTypeEnum>
OutputTypeConfiguration. activeSubOutputTypes
Stores all active sub output types (if any).Methods in org.goplanit.output.configuration that return types with arguments of type SubOutputTypeEnum Modifier and Type Method Description Set<SubOutputTypeEnum>
OutputTypeConfiguration. getActiveSubOutputTypes()
Returns a set of activated sub output types (if any)Methods in org.goplanit.output.configuration with parameters of type SubOutputTypeEnum Modifier and Type Method Description protected void
OutputTypeConfiguration. activateSubOutputType(SubOutputTypeEnum subOutputTypeEnum)
Activate a SubOutputTypeEnum for this output type configurationprotected void
OutputTypeConfiguration. deactivateSubOutputType(SubOutputTypeEnum subOutputTypeEnum)
Deactivate a SubOutputTypeEnum for this output type configuration -
Uses of SubOutputTypeEnum in org.goplanit.output.enums
Classes in org.goplanit.output.enums that implement SubOutputTypeEnum Modifier and Type Class Description class
OdSkimSubOutputType
Enumeration of possible values of OD Skim Output Type
-