![JAR search and dependency download from the Maven repository](/logo.png)
org.eroq.plugin.neo4jclient.Neo4jEntry Maven / Gradle / Ivy
package org.eroq.plugin.neo4jclient;
import java.util.List;
import java.util.Map;
public class Neo4jEntry {
protected Map row;
protected List graphNodes;
protected List graphRelationships;
public Neo4jEntry(Map row, List graphNodes, List graphRelationships) {
this.row = row;
this.graphNodes = graphNodes;
this.graphRelationships = graphRelationships;
}
public Map getRow() {
return row;
}
public List getGraphNodes() {
return graphNodes;
}
public List getGraphRelationships() {
return graphRelationships;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy