Package org.apache.ldap.server.partition.impl.btree

Examples of org.apache.ldap.server.partition.impl.btree.IndexEnumeration


     * java.math.BigInteger)
     */
    public boolean hasValue( RE regex, BigInteger id )
        throws NamingException
    {
        IndexEnumeration list = new IndexEnumeration(
            reverse.listTuples( id ), true, regex );
        boolean hasValue = list.hasMore();
        list.close();
        return hasValue;
    }
View Full Code Here

TOP

Related Classes of org.apache.ldap.server.partition.impl.btree.IndexEnumeration

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.