Uses of Interface
org.geotools.graph.structure.Graph

Packages that use Graph
org.geotools.graph.build   
org.geotools.graph.build.basic   
org.geotools.graph.build.line   
org.geotools.graph.build.polygon   
org.geotools.graph.io   
org.geotools.graph.io.standard   
org.geotools.graph.path   
org.geotools.graph.structure   
org.geotools.graph.structure.basic   
org.geotools.graph.traverse   
org.geotools.graph.traverse.basic   
org.geotools.graph.traverse.standard   
org.geotools.graph.util.delaunay   
org.geotools.graph.util.graph   
 

Uses of Graph in org.geotools.graph.build
 

Methods in org.geotools.graph.build that return Graph
 Graph GraphGenerator.getGraph()
          Returns the graph being generated.
 Graph GraphBuilder.getGraph()
          Returns the graph being built.
 

Methods in org.geotools.graph.build with parameters of type Graph
 void GraphBuilder.importGraph(Graph g)
          Constructs a graph builder from a pre built graph.
 

Uses of Graph in org.geotools.graph.build.basic
 

Methods in org.geotools.graph.build.basic that return Graph
protected  Graph BasicDirectedGraphBuilder.buildGraph()
          Creates a directed graph object.
 Graph BasicGraphGenerator.getGraph()
           
 Graph BasicGraphBuilder.getGraph()
           
protected  Graph BasicGraphBuilder.buildGraph()
          Creates the underlying graph object.
 

Methods in org.geotools.graph.build.basic with parameters of type Graph
 void BasicGraphBuilder.importGraph(Graph g)
           
 

Uses of Graph in org.geotools.graph.build.line
 

Methods in org.geotools.graph.build.line that return Graph
 Graph OptLineGraphGenerator.getGraph()
           
 Graph BasicLineGraphGenerator.getGraph()
           
 

Uses of Graph in org.geotools.graph.build.polygon
 

Methods in org.geotools.graph.build.polygon that return Graph
 Graph PolygonGraphGenerator.getGraph()
           
 

Uses of Graph in org.geotools.graph.io
 

Methods in org.geotools.graph.io that return Graph
 Graph GraphReaderWriter.read()
          Creates a Graph from some permanent representation.
 

Methods in org.geotools.graph.io with parameters of type Graph
 void GraphReaderWriter.write(Graph g)
          Writes the graph to a permanent representation.
 

Uses of Graph in org.geotools.graph.io.standard
 

Methods in org.geotools.graph.io.standard that return Graph
 Graph SerializedReaderWriter.read()
          Deserializes the graph and reconstructs the original structure.
 Graph DBReaderWriter.read()
          Performs a graph read by querying the database and processing each tuple returned in the query.
 Graph TextfileReaderWriter.read()
          Performs a read of the text file line by line.
 

Methods in org.geotools.graph.io.standard with parameters of type Graph
 void SerializedReaderWriter.write(Graph graph)
          Serializes the graph by writing each edge in the graph to an object output stream.
 void DBReaderWriter.write(Graph g)
          Performs a write on the graph out to the database.
 void TextfileReaderWriter.write(Graph g)
          Performs a write on the graph out to a text file.
 

Uses of Graph in org.geotools.graph.path
 

Constructors in org.geotools.graph.path with parameters of type Graph
DijkstraShortestPathFinder(Graph graph, DijkstraIterator iterator)
          Constructs a new path finder.
DijkstraShortestPathFinder(Graph graph, Graphable source, DijkstraIterator.EdgeWeighter weighter)
          Constructs a new path finder.
 

Uses of Graph in org.geotools.graph.structure
 

Subinterfaces of Graph in org.geotools.graph.structure
 interface DirectedGraph
          Represents a directed graph.
 

Uses of Graph in org.geotools.graph.structure.basic
 

Classes in org.geotools.graph.structure.basic that implement Graph
 class BasicDirectedGraph
          Basic implementation of DirectedGraph.
 class BasicGraph
          Basic implemenation of Graph.
 

Uses of Graph in org.geotools.graph.traverse
 

Methods in org.geotools.graph.traverse that return Graph
 Graph GraphTraversal.getGraph()
          Returns the graph being traversed.
 

Methods in org.geotools.graph.traverse with parameters of type Graph
 void GraphTraversal.setGraph(Graph graph)
          Sets the graph being traversed.
 void GraphIterator.init(Graph graph, GraphTraversal traversal)
          Signals to the itereator that iteration is about to begin.
 

Uses of Graph in org.geotools.graph.traverse.basic
 

Methods in org.geotools.graph.traverse.basic that return Graph
 Graph BasicGraphTraversal.getGraph()
           
 Graph AbstractGraphIterator.getGraph()
          Returns the graph being traversed.
 

Methods in org.geotools.graph.traverse.basic with parameters of type Graph
 void BasicGraphTraversal.setGraph(Graph graph)
           
 

Constructors in org.geotools.graph.traverse.basic with parameters of type Graph
StagedGraphTraversal(Graph graph, GraphWalker walker, GraphIterator iterator)
           
BasicGraphTraversal(Graph graph, GraphWalker walker, GraphIterator iterator)
          Constrcuts a new graph traversal.
 

Uses of Graph in org.geotools.graph.traverse.standard
 

Methods in org.geotools.graph.traverse.standard with parameters of type Graph
 void NoBifurcationIterator.init(Graph graph, GraphTraversal traversal)
          Does nothing.
 void DirectedBreadthFirstTopologicalIterator.init(Graph graph, GraphTraversal traversal)
           
protected  Queue DirectedBreadthFirstTopologicalIterator.buildQueue(Graph graph)
           
protected  Queue DirectedDepthFirstTopologicalIterator.buildQueue(Graph graph)
           
protected  Queue DepthFirstIterator.buildQueue(Graph graph)
          Builds the node queue for the Iteration.
 void DijkstraIterator.init(Graph graph, GraphTraversal traversal)
          Builds internal priority queue to manage node costs.
 void BreadthFirstTopologicalIterator.init(Graph graph, GraphTraversal traversal)
          Creates the active queue, and populates it with all nodes of degree less than 2.
protected  Queue BreadthFirstTopologicalIterator.buildQueue(Graph graph)
          Builds the active node queue.
protected  Queue DepthFirstTopologicalIterator.buildQueue(Graph graph)
          Builds the active node queue.
 void BreadthFirstIterator.init(Graph graph, GraphTraversal traversal)
          Does nothing.
protected  Queue BreadthFirstIterator.buildQueue(Graph graph)
          Builds the node queue for the iteration.
 

Uses of Graph in org.geotools.graph.util.delaunay
 

Methods in org.geotools.graph.util.delaunay that return Graph
static Graph DelaunayTriangulator.triangulate(FeatureCollection fc)
           
static Graph DelaunayTriangulator.triangulate(DelaunayNode[] nodes)
           
static Graph AutoClust.runAutoClust(Graph d)
           
 

Methods in org.geotools.graph.util.delaunay with parameters of type Graph
 void GraphViewer.setGraph(Graph gr)
           
static Graph AutoClust.runAutoClust(Graph d)
           
 

Uses of Graph in org.geotools.graph.util.graph
 

Constructors in org.geotools.graph.util.graph with parameters of type Graph
GraphFuser(Graph graph, GraphBuilder builder, GraphFuser.EdgeMerger merger)
          Constructs a GraphFuser.
GraphPartitioner(Graph graph)
          Constructs a new partitioner for a graph.
CycleDetector(Graph graph)
          Constructs a new CycleDetector.
DirectedCycleDetector(Graph graph)
           
 



Copyright © GeoTools. All Rights Reserved.