Class PageRank
- java.lang.Object
-
- org.apache.tinkerpop.gremlin.process.computer.traversal.step.map.PageRank
-
public final class PageRank extends Object
Configuration options to be passed to theGraphTraversal.with(String, Object)
step onGraphTraversal.pageRank()
.
-
-
Field Summary
Fields Modifier and Type Field Description static String
edges
Configures the edge to traverse when calculating the pagerank.static String
propertyName
Configures the name of the property within which to store the pagerank value.static String
times
Configures number of iterations that the algorithm should run.
-
Constructor Summary
Constructors Constructor Description PageRank()
-
-
-
Field Detail
-
times
public static final String times
Configures number of iterations that the algorithm should run.
-
edges
public static final String edges
Configures the edge to traverse when calculating the pagerank.
-
propertyName
public static final String propertyName
Configures the name of the property within which to store the pagerank value.
-
-