Uses of Class
edu.upc.dama.dex.core.Graph

Packages that use Graph
edu.upc.dama.dex.algorithms Provides classes in order to run algorithms among graphs. 
edu.upc.dama.dex.core Provides the main DEX classes with all the basic but complete funcionality for graph and data manipulation. 
edu.upc.dama.dex.io Provides funcionality to load DEX node or edge types from relational databases or CSV files as data sources as well as utilities to dump data. 
 

Uses of Graph in edu.upc.dama.dex.algorithms
 

Constructors in edu.upc.dama.dex.algorithms with parameters of type Graph
ConnectedComponents(Graph graph, java.lang.String materializedattribute)
          Creates a new instance of ConnectedComponents.
Connectivity(Graph graph)
          Creates a new instance of Connectivity.
ShortestPath(Graph graph)
          Creates a new instance of ShortestPath.
SinglePairShortestPath(Graph graph, long source, long dest)
          Creates a new instance of SinglePairShortestPath.
SinglePairShortestPathBFS(Graph graph, long source, long dest)
          Creates a new instance of SinglePairShortestPathBFS.
SinglePairShortestPathDijkstra(Graph graph, long source, long dest)
          Creates a new instance of SinglePairShortestPathDijkstra.
StrongConnectivity(Graph graph)
          Creates a new instance of StrongConnectivity.
StrongConnectivityGabow(Graph graph)
          Creates a new instance of StrongConnectivityGabow.
Traversal(Graph graph, long source)
          Creates a new instance of Traversal.
TraversalBFS(Graph graph, long source)
          Creates a new instance of Traversal.
TraversalDFS(Graph graph, long source)
          Creates a new instance of Traversal.
WeakConnectivity(Graph graph)
          Creates a new instance of WeakConnectivity.
WeakConnectivityDFS(Graph graph)
          Creates a new instance of WeakConnectivityDFS.
 

Uses of Graph in edu.upc.dama.dex.core
 

Subclasses of Graph in edu.upc.dama.dex.core
 class DbGraph
          Persistent Graph database.
 

Methods in edu.upc.dama.dex.core with parameters of type Graph
 void Export.prepare(Graph graph)
          Prepares the graph for the export process.
 

Uses of Graph in edu.upc.dama.dex.io
 

Fields in edu.upc.dama.dex.io declared as Graph
 Graph Exporter.ExporterEvent.graph
          Graph.
 Graph Loader.LoaderEvent.graph
          Graph.
 

Constructors in edu.upc.dama.dex.io with parameters of type Graph
EdgeTypeExporter(RowWriter rowWriter, Graph graph, int edgeType, int tailPos, long tailAttr, int headPos, long headAttr)
          Creates a new instance of EdgeTypeExporter.
All atrributes are exported.
EdgeTypeExporter(RowWriter rowWriter, Graph graph, int edgeType, java.lang.Long[] exportAttr, int tailPos, long tailAttr, int headPos, long headAttr)
          Creates a new instance of EdgeTypeExporter.
All atrributes are exported.
EdgeTypeLoader(RowReader rowReader, Graph graph, int edgeType, long tailAttr, int tailPos, long headAttr, int headPos)
          Create a new instance of EdgeTypeLoader.
Exporter(RowWriter rowWriter, Graph graph, int objectType)
          Creates a new instance of Exporter.
Exporter(RowWriter rowWriter, Graph graph, int objectType, java.lang.Long[] exportAttr)
          Creates a new instance of Exporter.
Loader(RowReader rowReader, Graph graph, int objectType)
          Creates a new instance of Loader.
NodeTypeExporter(RowWriter rowWriter, Graph graph, int nodeType)
          Creates a new instance of NodeTypeExporter.
All atrributes are exported.
NodeTypeExporter(RowWriter rowWriter, Graph graph, int nodeType, java.lang.Long[] exportAttr)
          Creates a new instance of NodeTypeExporter.
NodeTypeLoader(RowReader rowReader, Graph graph, int nodeType)
          Create a new instance of NodeTypeLoader.