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

org.eroq.plugin.neo4jclient.Neo4jNode Maven / Gradle / Ivy

package org.eroq.plugin.neo4jclient;

import java.util.Map;
import java.util.Set;

public class Neo4jNode extends Neo4jMap {
	
	protected long id;
	protected Set labels;

	public Neo4jNode(long id, Set labels, Map values) {
		super(values);
		this.id = id;
		this.labels = labels;
	}

	public long getId() {
		return id;
	}

	public Set getLabels() {
		return labels;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy