Uses of Class
org.goplanit.cost.virtual.AbstractVirtualCost
-
Packages that use AbstractVirtualCost Package Description org.goplanit.assignment Traffic assignment classesorg.goplanit.cost.virtual Contains the definitions of virtual cost classes -
-
Uses of AbstractVirtualCost in org.goplanit.assignment
Methods in org.goplanit.assignment that return AbstractVirtualCost Modifier and Type Method Description protected AbstractVirtualCost
TrafficAssignmentBuilder. createVirtualCostInstance()
create a virtual cost instance based on configurationAbstractVirtualCost
TrafficAssignment. getVirtualCost()
Returns the virtual cost object for the current assignmentMethods in org.goplanit.assignment that return types with arguments of type AbstractVirtualCost Modifier and Type Method Description VirtualCostConfigurator<? extends AbstractVirtualCost>
TrafficAssignmentConfigurator. createAndRegisterVirtualCost(String virtualTraveltimeCostFunctionType)
Create and Register virtual link cost function to determine travel timeVirtualCostConfigurator<? extends AbstractVirtualCost>
TrafficAssignmentConfigurator. getVirtualCost()
Collect the virtual cost entity registered on the traffic assignmentMethods in org.goplanit.assignment with parameters of type AbstractVirtualCost Modifier and Type Method Description void
TrafficAssignment. setVirtualCost(AbstractVirtualCost virtualCost)
Set the virtual cost where in case the cost is an InteractorAccessor will trigger an event to get access to the required data via requesting an InteractorAccessee -
Uses of AbstractVirtualCost in org.goplanit.cost.virtual
Classes in org.goplanit.cost.virtual with type parameters of type AbstractVirtualCost Modifier and Type Class Description class
VirtualCostConfigurator<T extends AbstractVirtualCost>
Base class for all virtual cost configurator implementationsSubclasses of AbstractVirtualCost in org.goplanit.cost.virtual Modifier and Type Class Description class
FixedConnectoidTravelTimeCost
Class holding fixed connectoid costs for each connectoid segmentclass
SpeedConnectoidTravelTimeCost
Class to calculate the connectoid travel time using connectoid speedMethods in org.goplanit.cost.virtual that return types with arguments of type AbstractVirtualCost Modifier and Type Method Description static VirtualCostConfigurator<? extends AbstractVirtualCost>
VirtualCostConfiguratorFactory. createConfigurator(String virtualCostType)
Create a configurator for given virtual cost typeMethods in org.goplanit.cost.virtual with parameters of type AbstractVirtualCost Modifier and Type Method Description void
VirtualCostConfigurator. configure(AbstractVirtualCost virtualCost)
Needed to avoid issues with generics, although it should be obvious that T extends VirtualCostConstructors in org.goplanit.cost.virtual with parameters of type AbstractVirtualCost Constructor Description AbstractVirtualCost(AbstractVirtualCost other)
Copy Constructor
-