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

iot.jcypher.graph.internal.LocalId Maven / Gradle / Ivy

Go to download

Provides seamlessly integrated Java access to graph databases (Neo4J) at different levels of abstraction.

There is a newer version: 4.2.0
Show newest version
package iot.jcypher.graph.internal;

public class LocalId extends GrId {

	public LocalId(long id) {
		super(id);
	}

	@Override
	public String toString() {
		return "LOCAL_id: " + String.valueOf(getId());
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy