Uses of Interface
org.planit.utils.network.virtual.Zone
-
Packages that use Zone Package Description org.planit.input Top-level input classes and interfacesorg.planit.network.virtual Virtual network component object classesorg.planit.od Top-level abstract interfaces to handle Origin-Destination Dataorg.planit.od.odmatrix This package contains classes for managing OD matrices.org.planit.od.odroute This package holds the origin-destination path objects.org.planit.utils.network.virtual Virtual physical network oriented utility classes -
-
Uses of Zone in org.planit.input
Methods in org.planit.input that return Zone Modifier and Type Method Description Zone
InputBuilderListener. getZoneByExternalId(Object externalId)
Returns the zone for a specified external IdMethods in org.planit.input with parameters of type Zone Modifier and Type Method Description boolean
InputBuilderListener. addZoneToExternalIdMap(Object externalId, Zone zone)
Stores a zone by its external Id -
Uses of Zone in org.planit.network.virtual
Classes in org.planit.network.virtual that implement Zone Modifier and Type Class Description class
ZoneImpl
Represents a demand generating zone in the network.Fields in org.planit.network.virtual declared as Zone Modifier and Type Field Description protected Zone
CentroidImpl. parentZone
the zone this centroid representsFields in org.planit.network.virtual with type parameters of type Zone Modifier and Type Field Description protected Map<Long,Zone>
Zoning. zoneMap
Map storing all the zones by their row/column in the OD matrixMethods in org.planit.network.virtual that return Zone Modifier and Type Method Description Zone
Zoning.Zones. createAndRegisterNewZone(Object externalId)
Create and register new zone to network identified via its idZone
CentroidImpl. getParentZone()
Return the parent zone of this centroidZone
Zoning.Zones. getZoneById(long id)
Retrieve zone by its Idprotected Zone
Zoning.Zones. registerZone(Zone zone)
Add zone to the internal container.Methods in org.planit.network.virtual that return types with arguments of type Zone Modifier and Type Method Description Iterator<Zone>
Zoning.Zones. iterator()
Collect iterator for all registered zones (non-ordered)Methods in org.planit.network.virtual with parameters of type Zone Modifier and Type Method Description Centroid
VirtualNetwork.Centroids. registerNewCentroid(Zone zone)
Create new centroidprotected Zone
Zoning.Zones. registerZone(Zone zone)
Add zone to the internal container.Constructors in org.planit.network.virtual with parameters of type Zone Constructor Description CentroidImpl(IdGroupingToken groupId, Zone parentZone)
Constructor -
Uses of Zone in org.planit.od
Methods in org.planit.od that return Zone Modifier and Type Method Description Zone
ODDataIterator. getCurrentDestination()
Returns the destination zone object for the current cellZone
ODDataIteratorImpl. getCurrentDestination()
Returns the destination zone object for the current cellZone
ODDataIterator. getCurrentOrigin()
Returns the origin zone object for the current cellZone
ODDataIteratorImpl. getCurrentOrigin()
Returns the origin zone object for the current cellMethods in org.planit.od with parameters of type Zone Modifier and Type Method Description T
ODData. getValue(Zone origin, Zone destination)
Returns the value for a specified origin and destinationvoid
ODData. setValue(Zone origin, Zone destination, T t)
Sets the value for a specified origin and destination -
Uses of Zone in org.planit.od.odmatrix
Methods in org.planit.od.odmatrix with parameters of type Zone Modifier and Type Method Description Double
ODMatrix. getValue(Zone origin, Zone destination)
Returns the value for a specified origin and destinationvoid
ODMatrix. setValue(Zone origin, Zone destination, Double value)
Sets the value for a specified origin and destination -
Uses of Zone in org.planit.od.odroute
Methods in org.planit.od.odroute with parameters of type Zone Modifier and Type Method Description Route
ODRouteMatrix. getValue(Zone origin, Zone destination)
Returns the path for a specified origin and destinationvoid
ODRouteMatrix. setValue(Zone origin, Zone destination, Route path)
Set the path from a specified origin to a specified destination -
Uses of Zone in org.planit.utils.network.virtual
Methods in org.planit.utils.network.virtual that return Zone Modifier and Type Method Description Zone
Centroid. getParentZone()
Return the parent zone of this centroid
-