![JAR search and dependency download from the Maven repository](/logo.png)
iot.jcypher.graph.internal.LocalId Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcypher Show documentation
Show all versions of jcypher Show documentation
Provides seamlessly integrated Java access to graph databases (Neo4J)
at different levels of abstraction.
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