* The size of a page to be stored on disk
* @throws IOException
*/
public DBTrieSet(final String fileName, final int bufferSize, final int pageSize) throws IOException {
super();
this.nodeManager = new NodeManager(this, fileName, bufferSize, pageSize);
if (this.nodeManager.isEmpty(1)) {
this.setRootNode(null);
}
else {