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 aRunner
which 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 class
RowInRecordMapper
Fields in org.openrefine.model declared as RowMapper Modifier and Type Field Description static RowMapper
RowMapper. IDENTITY
A row mapper which returns unchanged rows.Methods in org.openrefine.model that return RowMapper Modifier and Type Method Description static RowMapper
RowMapper. 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 RowMapper
RowMapper. 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 aRowScanMapper
to only aggregate its state on filtered rows, and only apply the map function to those filtered rows.static RowInRecordMapper
RowInRecordMapper. fromRowMapper(RowMapper rowMapper)
Grid
Grid. mapRows(RowMapper mapper, ColumnModel newColumnModel)
Returns a new grid, where the rows have been mapped by the mapper.static RecordMapper
RecordMapper. 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 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 RowMapper in org.openrefine.operations.cell
Methods in org.openrefine.operations.cell that return RowMapper Modifier and Type Method Description protected static RowMapper
CellEditOperation. mapFunction(int cellIndex, long rowId, Serializable newCellValue, int keyColumnIndex)
protected static RowMapper
ReconEditOperation. 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 RowMapper
AnnotateOneRowOperation. 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 Grid
LocalGrid. 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 Grid
LoggedGrid. 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 RowMapper
RunnerTestBase. concatRowMapper
Methods in org.openrefine.runners.testing with parameters of type RowMapper Modifier and Type Method Description Grid
TestingGrid. mapRows(RowMapper mapper, ColumnModel newColumnModel)
-