Uses of Interface
org.openrefine.model.RecordMapper
-
Packages that use RecordMapper Package Description org.openrefine.model org.openrefine.operations org.openrefine.operations.cell org.openrefine.runners.local Supplies aRunner
which is designed for execution on a single machine, with parallelism.org.openrefine.runners.local.logging org.openrefine.runners.testing -
-
Uses of RecordMapper in org.openrefine.model
Classes in org.openrefine.model that implement RecordMapper Modifier and Type Class Description class
RowInRecordMapper
Fields in org.openrefine.model declared as RecordMapper Modifier and Type Field Description static RecordMapper
RecordMapper. IDENTITY
Returns unchanged records.Methods in org.openrefine.model that return RecordMapper Modifier and Type Method Description static RecordMapper
RecordMapper. conditionalMapper(RecordFilter filter, RecordMapper positive, RecordMapper negative)
Returns a mapper which applies one of the two mappers provided depending on the outcome of the filter.static RecordMapper
RecordMapper. rowWiseRecordMapper(RowMapper mapper)
Applies a row mapper on all rows in the record.Methods in org.openrefine.model with parameters of type RecordMapper Modifier and Type Method Description static RecordMapper
RecordMapper. conditionalMapper(RecordFilter filter, RecordMapper positive, RecordMapper negative)
Returns a mapper which applies one of the two mappers provided depending on the outcome of the filter.Grid
Grid. mapRecords(RecordMapper mapper, ColumnModel newColumnModel)
Returns a new grid, where the records have been mapped by the mapper -
Uses of RecordMapper in org.openrefine.operations
Classes in org.openrefine.operations that implement RecordMapper Modifier and Type Class Description protected static class
ExpressionBasedOperation.NegativeRowMapper
protected static class
ExpressionBasedOperation.PositiveRowMapper
Row 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 RecordMapper in org.openrefine.operations.cell
Methods in org.openrefine.operations.cell that return RecordMapper Modifier and Type Method Description protected static RecordMapper
BlankDownOperation. recordMapper(int columnIndex)
protected static RecordMapper
FillDownOperation. recordMapper(int columnIndex, int keyColumnIndex)
protected static RecordMapper
MultiValuedCellJoinOperation. recordMapper(int columnIdx, String separator)
protected static RecordMapper
MultiValuedCellSplitOperation. recordMapper(int columnIdx, CellValueSplitter splitter)
-
Uses of RecordMapper in org.openrefine.runners.local
Methods in org.openrefine.runners.local with parameters of type RecordMapper Modifier and Type Method Description Grid
LocalGrid. mapRecords(RecordMapper mapper, ColumnModel newColumnModel)
-
Uses of RecordMapper in org.openrefine.runners.local.logging
Methods in org.openrefine.runners.local.logging with parameters of type RecordMapper Modifier and Type Method Description Grid
LoggedGrid. mapRecords(RecordMapper mapper, ColumnModel newColumnModel)
-
Uses of RecordMapper in org.openrefine.runners.testing
Fields in org.openrefine.runners.testing declared as RecordMapper Modifier and Type Field Description static RecordMapper
RunnerTestBase. concatRecordMapper
Methods in org.openrefine.runners.testing with parameters of type RecordMapper Modifier and Type Method Description Grid
TestingGrid. mapRecords(RecordMapper mapper, ColumnModel newColumnModel)
-