Uses of Interface
org.planit.utils.graph.Edges
-
Packages that use Edges Package Description org.planit.graph Network component object classesorg.planit.network.macroscopic.physical Macroscopic physical network component object classesorg.planit.network.physical Physical network component object classesorg.planit.utils.graph Utilities for setting up graphsorg.planit.utils.network.physical Physical network oriented utility classes -
-
Uses of Edges in org.planit.graph
Classes in org.planit.graph that implement Edges Modifier and Type Class Description class
EdgesImpl<V extends Vertex,E extends Edge>
Implementation of Edges interfaceFields in org.planit.graph declared as Edges Modifier and Type Field Description protected Edges<E>
GraphImpl. edges
class instance containing all edgesMethods in org.planit.graph that return Edges Modifier and Type Method Description Edges<E>
GraphImpl. getEdges()
collect edges of graphMethods in org.planit.graph with parameters of type Edges Modifier and Type Method Description void
DirectedGraphBuilderImpl. recreateIds(Edges<? extends DirectedEdge> edges)
recreate the ids for all passed in edgesvoid
GraphBuilder. recreateIds(Edges<? extends E> edges)
recreate the ids for all passed in edgesvoid
GraphBuilderImpl. recreateIds(Edges<? extends Edge> edges)
recreate the ids for all passed in edges -
Uses of Edges in org.planit.network.macroscopic.physical
Methods in org.planit.network.macroscopic.physical with parameters of type Edges Modifier and Type Method Description void
MacroscopicPhysicalNetworkBuilderImpl. recreateIds(Edges<? extends Link> links)
recreate the ids for all passed in edges -
Uses of Edges in org.planit.network.physical
Classes in org.planit.network.physical that implement Edges Modifier and Type Class Description class
LinksImpl<L extends Link>
Links implementation wrapper that simply utilises passed in edges of the desired generic type to delegate registration and creation of its links onMethods in org.planit.network.physical with parameters of type Edges Modifier and Type Method Description void
PhysicalNetworkBuilderImpl. recreateIds(Edges<? extends Link> links)
recreate the ids for all passed in edgesConstructors in org.planit.network.physical with parameters of type Edges Constructor Description LinksImpl(Edges<L> edges)
Constructor -
Uses of Edges in org.planit.utils.graph
Methods in org.planit.utils.graph that return Edges Modifier and Type Method Description Edges<E>
Graph. getEdges()
collect edges of graph -
Uses of Edges in org.planit.utils.network.physical
Subinterfaces of Edges in org.planit.utils.network.physical Modifier and Type Interface Description interface
Links<L extends Link>
wrapper around edges interface to support Links explicitly rather than edges
-