All Downloads are FREE. Search and download functionalities are using the official Maven repository.

apoc.result.NodeScoreStats Maven / Gradle / Ivy

There is a newer version: 3.5.0.2
Show newest version
package apoc.result;

import apoc.algo.pagerank.PageRank;
import org.neo4j.graphdb.Node;

/**
 * @author mh
 * @since 09.10.16
 */
public class NodeScoreStats extends NodeScore {
    public final PageRank.PageRankStatistics stats;
    public NodeScoreStats(Node node, Double score, PageRank.PageRankStatistics stats) {
        super(node, score);
        this.stats = stats;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy