KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > daffodildb > server > datasystem > interfaces > _DataTable


1 package com.daffodilwoods.daffodildb.server.datasystem.interfaces;
2
3
4 import com.daffodilwoods.database.resource.*;
5 import com.daffodilwoods.daffodildb.server.datasystem.utility.*;
6
7 /**
8  *
9  * <p>Title: _DataTable</p>
10 * <p>Description: Is an interface that provides some methods in addition to
11  * those provides by _table interface.
12  */

13 public interface _DataTable extends _Table{
14
15   /**
16    * Used to get an iterator on the table to access the records of the table
17    * @return an iterator to navigate on the table.
18    * @throws DException
19    */

20   _TableIterator getIterator() throws DException;
21   int getIndexType() throws DException ; // 0 - BTree , 1 - FileBtTree
22
}
23
Popular Tags