Package com.google.refine.operations.recon

Examples of com.google.refine.operations.recon.ReconCopyAcrossColumnsOperation


        String fromColumnName = request.getParameter("fromColumnName");
        String[] toColumnNames = request.getParameterValues("toColumnName[]");
        String[] judgments = request.getParameterValues("judgment[]");
        boolean applyToJudgedCells = Boolean.parseBoolean(request.getParameter("applyToJudgedCells"));
       
        return new ReconCopyAcrossColumnsOperation(
            engineConfig, fromColumnName, toColumnNames, judgments, applyToJudgedCells);
    }
View Full Code Here

TOP

Related Classes of com.google.refine.operations.recon.ReconCopyAcrossColumnsOperation

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.