Package com.google.refine.browsing.util

Examples of com.google.refine.browsing.util.TimeBinRecordIndex


           
            Column column = project.columnModel.getColumnByCellIndex(_cellIndex);
            String key = "time-bin:record-based:" + _expression;
            TimeBinIndex index = (TimeBinIndex) column.getPrecompute(key);
            if (index == null) {
                index = new TimeBinRecordIndex(project, rowEvaluable);
                column.setPrecompute(key, index);
            }
           
            retrieveDataFromBaseBinIndex(index);
           
View Full Code Here

TOP

Related Classes of com.google.refine.browsing.util.TimeBinRecordIndex

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.