Package com.foundationdb.ais.model

Examples of com.foundationdb.ais.model.HKey


    private Object[] key(Key key, RowDef rowDef)
    {
        // Key traversal
        int keySize = key.getDepth();
        // HKey traversal
        HKey hKey = rowDef.table().hKey();
        List<HKeySegment> hKeySegments = hKey.segments();
        int k = 0;
        // Traverse key, guided by hKey, populating result
        Object[] keyArray = new Object[keySize];
        int h = 0;
        key.indexTo(0);
View Full Code Here

TOP

Related Classes of com.foundationdb.ais.model.HKey

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.