
org.wowtools.neo4j.rtree.internal.define.Labels Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neo4j-rtree Show documentation
Show all versions of neo4j-rtree Show documentation
a spatial index for neo4j 4.x.
The newest version!
package org.wowtools.neo4j.rtree.internal.define;
import org.neo4j.graphdb.Label;
/**
* 标签
*
* @author liuyu
* @date 2021/12/18
*/
public class Labels {
/**
* 树的描述信息
*/
public static final Label METADATA = Label.label("RTREE_METADATA");
/**
* 树的非叶子节点
*/
public static final Label RTREE_BRANCH = Label.label("RTREE_BRANCH");
/**
* 树的叶子节点
*/
public static final Label RTREE_LEAF = Label.label("RTREE_LEAF");
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy