Package bm.db.index

Examples of bm.db.index.IndexInfo


            throws DBException,
                   RecordStoreFullException,
                   RSException,
                   SerializationException
    {
        createIndex( new IndexInfo( order, name, fields, keyType, caseSensitive ) );
    }
View Full Code Here


            throws DBException,
                   RecordStoreFullException,
                   RSException,
                   SerializationException
    {
        createIndex( new IndexInfo( 30, name, fields, keyType, caseSensitive ) );
    }
View Full Code Here

            throws DBException,
                   RecordStoreFullException,
                   RSException,
                   SerializationException
    {
        createIndex( new IndexInfo(
                30, name, fields, Index.KT_STRING, caseSensitive
        ) );
    }
View Full Code Here

            throws DBException,
                   RecordStoreFullException,
                   RSException,
                   SerializationException
    {
        createIndex( new IndexInfo(
                order, name, fields, Index.KT_STRING, caseSensitive
        ) );
    }
View Full Code Here

            throws DBException,
                   RecordStoreFullException,
                   RSException,
                   SerializationException
    {
        createIndex( new IndexInfo( 30, name, fields, Index.KT_STRING, false ) );
    }
View Full Code Here

            throws DBException,
                   RecordStoreFullException,
                   RSException,
                   SerializationException
    {
        createIndex( new IndexInfo( order, name, fields, Index.KT_STRING, false ) );
    }
View Full Code Here

            throws DBException,
                   RecordStoreFullException,
                   RSException,
                   SerializationException
    {
        createIndex( new IndexInfo( 30, name, field, keyType, caseSensitive ) );
    }
View Full Code Here

            throws DBException,
                   RecordStoreFullException,
                   RSException,
                   SerializationException
    {
        createIndex( new IndexInfo( order, name, field, keyType, caseSensitive ) );
    }
View Full Code Here

        {
            indexCount = tableIndexInfo.length;
            indexMap = new Hashtable( indexCount );
            for( int i = 0; i < indexCount; i++ )
            {
                final IndexInfo idx = tableIndexInfo[i];
                final Index index = new Index(
                        idx.getName(),
                        idx.getOrder(),
                        idx.getKeyType(),
                        idx.isCaseSensitive()
                );
                indexMap.put( idx.getFieldExpression(), index );
            }
        }
        else
        {
            indexMap = new Hashtable(1);
View Full Code Here

        {
            final IndexInfo[] indexInfo = new IndexInfo[ length ];
            this.indexInfo = indexInfo;
            for( int i = 0; i < length; i++ )
            {
                indexInfo[i] = new IndexInfo();
                indexInfo[i].deserialize( in );
            }
        }
        else
        {
View Full Code Here

TOP

Related Classes of bm.db.index.IndexInfo

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.