Uses of Interface
org.jgrapht.EdgeFactory

Packages that use EdgeFactory
org.jgrapht The front-end API's interfaces and classes, including Graph, DirectedGraph and UndirectedGraph
org.jgrapht.generate Generators for graphs of various topologies. 
org.jgrapht.graph Implementations of various graphs. 
 

Uses of EdgeFactory in org.jgrapht
 

Methods in org.jgrapht that return EdgeFactory
 EdgeFactory<V,E> Graph.getEdgeFactory()
          Returns the edge factory using which this graph creates new edges.
 

Uses of EdgeFactory in org.jgrapht.generate
 

Fields in org.jgrapht.generate declared as EdgeFactory
protected  EdgeFactory<V,E> WeightedGraphGenerator.edgeFactory
           
 

Methods in org.jgrapht.generate with parameters of type EdgeFactory
 WeightedGraphGenerator<V,E> WeightedGraphGenerator.edgeFactory(EdgeFactory<V,E> edgeFactory)
           
 

Uses of EdgeFactory in org.jgrapht.graph
 

Classes in org.jgrapht.graph that implement EdgeFactory
 class ClassBasedEdgeFactory<V,E>
          An EdgeFactory for producing edges by using a class as a factory.
 

Methods in org.jgrapht.graph that return EdgeFactory
 EdgeFactory<V,E> AbstractBaseGraph.getEdgeFactory()
           
 EdgeFactory<V,E> GraphUnion.getEdgeFactory()
          Throws UnsupportedOperationException, because GraphUnion is read-only.
 EdgeFactory<V,E> GraphDelegator.getEdgeFactory()
           
 EdgeFactory<V,E> MaskSubgraph.getEdgeFactory()
           
 EdgeFactory<V,E> Subgraph.getEdgeFactory()
           
 

Constructors in org.jgrapht.graph with parameters of type EdgeFactory
AbstractBaseGraph(EdgeFactory<V,E> ef, boolean allowMultipleEdges, boolean allowLoops)
          Construct a new pseudograph.
DefaultDirectedGraph(EdgeFactory<V,E> ef)
          Creates a new directed graph with the specified edge factory.
DefaultDirectedWeightedGraph(EdgeFactory<V,E> ef)
          Creates a new directed weighted graph with the specified edge factory.
DirectedMultigraph(EdgeFactory<V,E> ef)
          Creates a new directed multigraph with the specified edge factory.
DirectedPseudograph(EdgeFactory<V,E> ef)
           
DirectedWeightedMultigraph(EdgeFactory<V,E> ef)
          Creates a new directed weighted multigraph with the specified edge factory.
DirectedWeightedPseudograph(EdgeFactory<V,E> ef)
          Creates a new directed weighted pseudograph with the specified edge factory.
Multigraph(EdgeFactory<V,E> ef)
          Creates a new multigraph with the specified edge factory.
Pseudograph(EdgeFactory<V,E> ef)
          Creates a new pseudograph with the specified edge factory.
SimpleDirectedGraph(EdgeFactory<V,E> ef)
          Creates a new simple directed graph with the specified edge factory.
SimpleDirectedWeightedGraph(EdgeFactory<V,E> ef)
          Creates a new simple directed weighted graph with the specified edge factory.
SimpleGraph(EdgeFactory<V,E> ef)
          Creates a new simple graph with the specified edge factory.
SimpleWeightedGraph(EdgeFactory<V,E> ef)
          Creates a new simple weighted graph with the specified edge factory.
WeightedMultigraph(EdgeFactory<V,E> ef)
          Creates a new weighted multigraph with the specified edge factory.
WeightedPseudograph(EdgeFactory<V,E> ef)
          Creates a new weighted pseudograph with the specified edge factory.
 



Copyright © 2013. All rights reserved.