⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dbbufferreturnelement.java

📁 数据库实现的一个源码包
💻 JAVA
字号:
package neustore.base;

/**
 * A buffered page as return result to {@link DBBuffer#readPage}.
 * Besides the page itself, the returned element also
 * specifies the nodeType and whether the node was parsed. If parsed, the returned
 * object is of class DBPage.  Otherwise, the returned object is a byte array and
 * it's up to the application to generate a DBPage object.
 * 
 * @see DBBuffer
 * @author Donghui Zhang <donghui@ccs.neu.edu>
 */
public class DBBufferReturnElement {
	public int nodeType;
	public Object object;
	public boolean parsed;
	
	public DBBufferReturnElement( int _nodeType, Object _object, boolean _parsed ) {
		nodeType = _nodeType;
		object = _object;
		parsed = _parsed;
	}
}

⌨️ 快捷键说明

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