Uses of Interface
org.planit.utils.graph.Edge
-
Packages that use Edge Package Description org.planit.graph Network component object classesorg.planit.network.physical Physical network component object classesorg.planit.network.transport Integrated network component object classesorg.planit.network.virtual Virtual network component object classesorg.planit.utils.graph Utilities for setting up graphsorg.planit.utils.network.physical Physical network oriented utility classesorg.planit.utils.network.virtual Virtual physical network oriented utility classes -
-
Uses of Edge in org.planit.graph
Classes in org.planit.graph that implement Edge Modifier and Type Class Description class
EdgeImpl
Edge class connecting two vertices via some geometry.Fields in org.planit.graph declared as Edge Modifier and Type Field Description protected Edge
EdgeSegmentImpl. parentEdge
segment's parent edgeFields in org.planit.graph with type parameters of type Edge Modifier and Type Field Description protected Set<Edge>
VertexImpl.EdgesImpl. edges
Methods in org.planit.graph that return Edge Modifier and Type Method Description Edge
EdgeSegmentImpl. getParentEdge()
parent edge of the segmentMethods in org.planit.graph that return types with arguments of type Edge Modifier and Type Method Description Set<Edge>
VertexImpl.EdgesImpl. getEdges()
#Returns a Set of Edge objectsMethods in org.planit.graph with parameters of type Edge Modifier and Type Method Description boolean
VertexImpl.EdgesImpl. addEdge(Edge edge)
#Add edge, do not invoke when parsing networks, this connection is auto-populated before the assignment starts based on the edge and its two vertices that have been registered.int
EdgeImpl. compareTo(Edge o)
boolean
VertexImpl.EdgesImpl. removeEdge(Edge edge)
#Remove edgeConstructors in org.planit.graph with parameters of type Edge Constructor Description EdgeSegmentImpl(IdGroupingToken groupId, Edge parentEdge, boolean directionAB)
Constructor -
Uses of Edge in org.planit.network.physical
Classes in org.planit.network.physical that implement Edge Modifier and Type Class Description class
LinkImpl
Link class connecting two nodes via some geometry. -
Uses of Edge in org.planit.network.transport
Methods in org.planit.network.transport with parameters of type Edge Modifier and Type Method Description protected void
TransportNetwork. connectVerticesToEdge(Edge edge)
Add Edge to both verticesprotected void
TransportNetwork. disconnectVerticesFromEdge(Edge edge)
Remove Edge from both vertices -
Uses of Edge in org.planit.network.virtual
Classes in org.planit.network.virtual that implement Edge Modifier and Type Class Description class
ConnectoidImpl
connectoid connecting a zone to the physical road network, carrying two connectoid segments in one or two directions which may carry additional information for each particular direction of the connectoid. -
Uses of Edge in org.planit.utils.graph
Methods in org.planit.utils.graph that return Edge Modifier and Type Method Description Edge
EdgeSegment. getParentEdge()
Collect the parent edge of the segmentMethods in org.planit.utils.graph that return types with arguments of type Edge Modifier and Type Method Description Set<Edge>
Vertex.Edges. getEdges()
Returns a Set of Edge objectsMethods in org.planit.utils.graph with parameters of type Edge Modifier and Type Method Description boolean
Vertex.Edges. addEdge(Edge edge)
Add edge, do not invoke when parsing networks, this connection is auto-populated before the assignment starts based on the edge and its two vertices that have been registered.boolean
Vertex.Edges. removeEdge(Edge edge)
Remove edge -
Uses of Edge in org.planit.utils.network.physical
Subinterfaces of Edge in org.planit.utils.network.physical Modifier and Type Interface Description interface
Link
Link interface which extends the Edge interface with a unique id (not all edges are links) as well as an external id -
Uses of Edge in org.planit.utils.network.virtual
Subinterfaces of Edge in org.planit.utils.network.virtual Modifier and Type Interface Description interface
Connectoid
the connecting component between centroid and a first physical node in the network.
-