Uses of Interface
graph_gen_utils.partitioner.Partitioner

Packages that use Partitioner
graph_gen_utils   
graph_gen_utils.partitioner   
 

Uses of Partitioner in graph_gen_utils
 

Methods in graph_gen_utils with parameters of type Partitioner
static void NeoFromFile.applyPtnToNeo(org.neo4j.graphdb.GraphDatabaseService transNeo, Partitioner partitioner)
          Allocates nodes of a Neo4j instance to clusters/partitions.
static void NeoFromFile.applyPtnToNeo(org.neo4j.graphdb.GraphDatabaseService transNeo, Partitioner partitioner, java.util.Map<java.lang.String,java.lang.Object> props)
          Allocates nodes of a Neo4j instance to clusters/partitions.
static void NeoFromFile.writeNeoFromChacoAndPtn(org.neo4j.graphdb.GraphDatabaseService transNeo, java.lang.String graphPath, Partitioner partitioner)
          Creates a Neo4j instance, populates it from the contents of a Chaco (.graph) file, then allocates Nodes to partitions/clusters.
static void NeoFromFile.writeNeoFromChacoAndPtnBatch(java.lang.String dbDir, java.lang.String graphPath, Partitioner partitioner)
          Creates a Neo4j instance using the BatchInserter, populates it from the contents of a Chaco (.graph) file, then allocates Nodes to partitions/clusters.
static void NeoFromFile.writeNeoFromGMLAndPtn(org.neo4j.graphdb.GraphDatabaseService transNeo, java.lang.String gmlPath, Partitioner partitioner)
          Creates a Neo4j instance and populates it from the contents of a GML (.gml) file, then allocates Nodes to partitions/clusters.
static void NeoFromFile.writeNeoFromTopologyAndPtn(org.neo4j.graphdb.GraphDatabaseService transNeo, GraphTopology topology, Partitioner partitioner)
          Creates a Neo4j instance, populates it according to a generated graph topology, then allocates Nodes to partitions/clusters.
static void NeoFromFile.writeNeoFromTwitterDatasetAndPtn(org.neo4j.graphdb.GraphDatabaseService transNeo, java.lang.String twitterPath, Partitioner partitioner)
          Creates a Neo4j instance and populates it from the contents of a dataset with a proprietry binary file format, which contains user follows/following connectivity data from Twitter.
 

Uses of Partitioner in graph_gen_utils.partitioner
 

Classes in graph_gen_utils.partitioner that implement Partitioner
 class PartitionerAsBalanced
           
 class PartitionerAsCoordinates
           
 class PartitionerAsDefault
           
 class PartitionerAsFile
           
 class PartitionerAsRandom
           
 class PartitionerAsSingle