Uses of Interface
org.openrefine.model.RowMapper
-
Packages that use RowMapper Package Description org.openrefine.model org.openrefine.operations org.openrefine.operations.cell org.openrefine.operations.row org.openrefine.runners.local Supplies aRunnerwhich is designed for execution on a single machine, with parallelism.org.openrefine.runners.local.logging org.openrefine.runners.testing -
-
Uses of RowMapper in org.openrefine.model
Classes in org.openrefine.model that implement RowMapper Modifier and Type Class Description classRowInRecordMapperFields in org.openrefine.model declared as RowMapper Modifier and Type Field Description static RowMapperRowMapper. IDENTITYA row mapper which returns unchanged rows.Methods in org.openrefine.model that return RowMapper Modifier and Type Method Description static RowMapperRowMapper. conditionalMapper(RowFilter filter, RowMapper positive, RowMapper negative)Returns a mapper which applies one of the two mappers provided depending on the outcome of the filter.Methods in org.openrefine.model with parameters of type RowMapper Modifier and Type Method Description static RowMapperRowMapper. conditionalMapper(RowFilter filter, RowMapper positive, RowMapper negative)Returns a mapper which applies one of the two mappers provided depending on the outcome of the filter.static <S> RowScanMapper<S>RowScanMapper. conditionalMapper(RowFilter filter, RowScanMapper<S> rowScanMapper, RowMapper negativeMapper)Restricts aRowScanMapperto only aggregate its state on filtered rows, and only apply the map function to those filtered rows.static RowInRecordMapperRowInRecordMapper. fromRowMapper(RowMapper rowMapper)GridGrid. mapRows(RowMapper mapper, ColumnModel newColumnModel)Returns a new grid, where the rows have been mapped by the mapper.static RecordMapperRecordMapper. rowWiseRecordMapper(RowMapper mapper)Applies a row mapper on all rows in the record. -
Uses of RowMapper in org.openrefine.operations
Classes in org.openrefine.operations that implement RowMapper Modifier and Type Class Description protected static classExpressionBasedOperation.NegativeRowMapperprotected static classExpressionBasedOperation.PositiveRowMapperRow mapper which calls a change data producer (to evaluate the expression) and directly calls the corresponding change data joiner (to insert the results in the row). -
Uses of RowMapper in org.openrefine.operations.cell
Methods in org.openrefine.operations.cell that return RowMapper Modifier and Type Method Description protected static RowMapperCellEditOperation. mapFunction(int cellIndex, long rowId, Serializable newCellValue, int keyColumnIndex)protected static RowMapperReconEditOperation. mapFunction(int cellIndex, long rowId, Recon newRecon) -
Uses of RowMapper in org.openrefine.operations.row
Methods in org.openrefine.operations.row that return RowMapper Modifier and Type Method Description protected static RowMapperAnnotateOneRowOperation. mapper(long rowId, boolean star, boolean value) -
Uses of RowMapper in org.openrefine.runners.local
Methods in org.openrefine.runners.local with parameters of type RowMapper Modifier and Type Method Description GridLocalGrid. mapRows(RowMapper mapper, ColumnModel newColumnModel) -
Uses of RowMapper in org.openrefine.runners.local.logging
Methods in org.openrefine.runners.local.logging with parameters of type RowMapper Modifier and Type Method Description GridLoggedGrid. mapRows(RowMapper mapper, ColumnModel newColumnModel) -
Uses of RowMapper in org.openrefine.runners.testing
Fields in org.openrefine.runners.testing declared as RowMapper Modifier and Type Field Description static RowMapperRunnerTestBase. concatRowMapperMethods in org.openrefine.runners.testing with parameters of type RowMapper Modifier and Type Method Description GridTestingGrid. mapRows(RowMapper mapper, ColumnModel newColumnModel)
-