Package com.google.refine.model.changes

Examples of com.google.refine.model.changes.ColumnSplitChange


            "Split " + rowIndices.size() +
            " cell(s) in column " + _columnName +
            " into several columns" +
                ("separator".equals(_mode) ? " by separator" : " by field lengths");

        Change change = new ColumnSplitChange(
            _columnName,
            columnNames,
            rowIndices,
            tuples,
            _removeOriginalColumn
View Full Code Here

TOP

Related Classes of com.google.refine.model.changes.ColumnSplitChange

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.