Package org.apache.directory.mavibot.btree

Examples of org.apache.directory.mavibot.btree.Tuple


        bs.sort( file );
       
        Iterator<Tuple<Dn, String>> itr = bs.getMergeSortedTuples();
        while( itr.hasNext() )
        {
            Tuple t = itr.next();
            System.out.println( t.getKey() + " - " + t.getValue() );
        }
       
        //BTreeBuilder<, V>
    }
View Full Code Here

TOP

Related Classes of org.apache.directory.mavibot.btree.Tuple

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.