Uses of Interface
org.jgrapht.graph.specifics.Specifics
-
Packages that use Specifics Package Description org.jgrapht.graph Implementations of various graphs.org.jgrapht.graph.specifics Implementations of specifics for various graph types. -
-
Uses of Specifics in org.jgrapht.graph
Fields in org.jgrapht.graph declared as Specifics Modifier and Type Field Description private Specifics<V,E>
AbstractBaseGraph. specifics
Methods in org.jgrapht.graph that return Specifics Modifier and Type Method Description protected Specifics<V,E>
AbstractBaseGraph. createDirectedSpecifics()
Deprecated.specifics can be changed by overriding directlyAbstractBaseGraph.createSpecifics()
.protected Specifics<V,E>
AbstractBaseGraph. createSpecifics()
Create the specifics for this graph.protected Specifics<V,E>
AbstractBaseGraph. createUndirectedSpecifics()
Deprecated.specifics can be changed by overriding directlyAbstractBaseGraph.createSpecifics()
. -
Uses of Specifics in org.jgrapht.graph.specifics
Classes in org.jgrapht.graph.specifics that implement Specifics Modifier and Type Class Description class
DirectedSpecifics<V,E>
Plain implementation of DirectedSpecifics.class
FastLookupDirectedSpecifics<V,E>
Fast implementation of DirectedSpecifics.class
FastLookupUndirectedSpecifics<V,E>
Fast implementation of UndirectedSpecifics.class
UndirectedSpecifics<V,E>
Plain implementation of UndirectedSpecifics.
-