Package org.chaidb.db.index.btree

Examples of org.chaidb.db.index.btree.PathBTree


            case IBTreeConst.SUPER_BTREE:
                return new org.chaidb.db.index.btree.SuperBTree();
            case IBTreeConst.HYPER_BTREE:
                return new HyperBTree();
            case IBTreeConst.PATH_BTREE:
                return new PathBTree();
            case IBTreeConst.BTREE:
                return new BTree();
            default:
                return new BTree();
        }
View Full Code Here

TOP

Related Classes of org.chaidb.db.index.btree.PathBTree

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.