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

apoc.result.NodeScore Maven / Gradle / Ivy

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

import org.neo4j.graphdb.Node;

/**
 * @author mh
 * @since 12.05.16
 */
public class NodeScore {
    public final Node node;
    public final Double score;

    public NodeScore(Node node, Double score) {
        this.node = node;
        this.score = score;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy