Uses of Class
com.gpudb.protocol.CreateGraphRequest
-
Packages that use CreateGraphRequest Package Description com.gpudb com.gpudb.protocol -
-
Uses of CreateGraphRequest in com.gpudb
Methods in com.gpudb with parameters of type CreateGraphRequest Modifier and Type Method Description CreateGraphResponseGPUdb. createGraph(CreateGraphRequest request)Creates a new graph network using given nodes, edges, weights, and restrictions. -
Uses of CreateGraphRequest in com.gpudb.protocol
Methods in com.gpudb.protocol that return CreateGraphRequest Modifier and Type Method Description CreateGraphRequestCreateGraphRequest. setDirectedGraph(boolean directedGraph)If set toTRUE, the graph will be directed.CreateGraphRequestCreateGraphRequest. setEdges(List<String> edges)Edges represent the required fundamental topological unit of a graph that typically connect nodes.CreateGraphRequestCreateGraphRequest. setGraphName(String graphName)Name of the graph resource to generate.CreateGraphRequestCreateGraphRequest. setNodes(List<String> nodes)Nodes represent fundamental topological units of a graph.CreateGraphRequestCreateGraphRequest. setOptions(Map<String,String> options)Optional parameters.CreateGraphRequestCreateGraphRequest. setRestrictions(List<String> restrictions)Restrictions represent a method of informing the graph solver which edges and/or nodes should be ignored for the solution.CreateGraphRequestCreateGraphRequest. setWeights(List<String> weights)Weights represent a method of informing the graph solver of the cost of including a given edge in a solution.
-