ibytetree.java

来自「R树与B树的混合树」· Java 代码 · 共 11 行

JAVA
11
字号

package NET.sourceforge.BplusJ.BplusJ;
	/// <summary>
	/// A tree which returns byte array values
	/// </summary>
	public interface IByteTree extends ITreeIndex 
	{
		//byte[] this[String key] { get; set; }
		byte[] get(String key) throws Exception;
		void set(String key, byte[] value) throws Exception;
	}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?