node.java
来自「一个java实现的R树」· Java 代码 · 共 37 行
JAVA
37 行
package rtree;/** * Interface for easy access to common Node information. * <p> * Created: Tue May 18 16:03:08 1999 * <p> * @author Hadjieleftheriou Marios * @version 1.001 */public interface Node { // do not export any Set functions. We want to protect the state of the RTree from outside // tampering. Give only basic Get methods. // public Object getChild(int i); public AbstractNode getParent(); public HyperCube[] getHyperCubes(); public int getLevel(); public HyperCube getNodeMbb(); public String getUniqueId(); public boolean isLeaf(); public boolean isRoot(); public boolean isIndex(); public String toString();} // Node
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?