Uses of Interface
org.openrefine.model.RecordFilter
-
Packages that use RecordFilter Package Description org.openrefine.browsing org.openrefine.browsing.filters org.openrefine.browsing.util org.openrefine.model 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 RecordFilter in org.openrefine.browsing
Methods in org.openrefine.browsing that return RecordFilter Modifier and Type Method Description RecordFilter
Engine. combinedRecordFilters()
-
Uses of RecordFilter in org.openrefine.browsing.filters
Classes in org.openrefine.browsing.filters that implement RecordFilter Modifier and Type Class Description class
AllRowsRecordFilter
class
AnyRowRecordFilter
class
DualExpressionsNumberComparisonRowFilter
Judge if a row matches by evaluating two given expressions on the row, based on two different columns and checking the results.class
ExpressionEqualRowFilter
Judge if a row matches by evaluating a given expression on the row, based on a particular column, and checking the result.class
ExpressionNumberComparisonRowFilter
Judge if a row matches by evaluating a given expression on the row, based on a particular column, and checking the result.class
ExpressionStringComparisonRowFilter
Judge if a row matches by evaluating a given expression on the row, based on a particular column, and checking the result.class
ExpressionTimeComparisonRowFilter
Judge if a row matches by evaluating a given expression on the row, based on a particular column, and checking the result. -
Uses of RecordFilter in org.openrefine.browsing.util
Classes in org.openrefine.browsing.util that implement RecordFilter Modifier and Type Class Description class
ScatterplotRowFilter
Filters rows according to the settings of a scatterplot facet. -
Uses of RecordFilter in org.openrefine.model
Classes in org.openrefine.model that implement RecordFilter Modifier and Type Class Description class
RowInRecordFilter
Row filter which has also access to the spanning record.Fields in org.openrefine.model declared as RecordFilter Modifier and Type Field Description static RecordFilter
RecordFilter. ANY_RECORD
A filter which accepts all records.Methods in org.openrefine.model that return RecordFilter Modifier and Type Method Description static RecordFilter
RecordFilter. conjunction(List<RecordFilter> recordFilters)
A record filter which evaluates to true when all the supplied record filters do.static RecordFilter
RecordFilter. negate(RecordFilter filter)
Methods in org.openrefine.model with parameters of type RecordFilter 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.long
Grid. countMatchingRecords(RecordFilter filter)
Return the number of records which are filtered by this filter.Grid.ApproxCount
Grid. countMatchingRecordsApprox(RecordFilter filter, long limit)
Return the number of records matching the given record filter, but by processing about at most a fixed number of records.List<Record>
Grid. getRecordsAfter(RecordFilter filter, long start, int limit)
Among the filtered subset of records, returns a list of records, starting from a given index and defined by a maximum size.List<Record>
Grid. getRecordsBefore(RecordFilter filter, long end, int limit)
Among the filtered subset of records, returns a list of records, ending at a given index (exclusive) and defined by a maximum size.CloseableIterator<Record>
Grid. iterateRecords(RecordFilter filter)
Iterate over records matched by a filter.<T> ChangeData<T>
Grid. mapRecords(RecordFilter filter, RecordChangeDataProducer<T> recordMapper, Optional<ChangeData<T>> incompleteChangeData)
Extract change data by applying a function to each filtered record.static RecordFilter
RecordFilter. negate(RecordFilter filter)
Grid
Grid. removeRecords(RecordFilter filter)
Removes all records selected by a filterMethod parameters in org.openrefine.model with type arguments of type RecordFilter Modifier and Type Method Description static RecordFilter
RecordFilter. conjunction(List<RecordFilter> recordFilters)
A record filter which evaluates to true when all the supplied record filters do. -
Uses of RecordFilter in org.openrefine.runners.local
Methods in org.openrefine.runners.local with parameters of type RecordFilter Modifier and Type Method Description long
LocalGrid. countMatchingRecords(RecordFilter filter)
Grid.ApproxCount
LocalGrid. countMatchingRecordsApprox(RecordFilter filter, long limit)
List<Record>
LocalGrid. getRecordsAfter(RecordFilter filter, long start, int limit)
List<Record>
LocalGrid. getRecordsBefore(RecordFilter filter, long end, int limit)
CloseableIterator<Record>
LocalGrid. iterateRecords(RecordFilter filter)
<T> ChangeData<T>
LocalGrid. mapRecords(RecordFilter filter, RecordChangeDataProducer<T> recordMapper, Optional<ChangeData<T>> incompleteChangeData)
Grid
LocalGrid. removeRecords(RecordFilter filter)
-
Uses of RecordFilter in org.openrefine.runners.local.logging
Methods in org.openrefine.runners.local.logging with parameters of type RecordFilter Modifier and Type Method Description long
LoggedGrid. countMatchingRecords(RecordFilter filter)
Grid.ApproxCount
LoggedGrid. countMatchingRecordsApprox(RecordFilter filter, long limit)
List<Record>
LoggedGrid. getRecordsAfter(RecordFilter filter, long start, int limit)
List<Record>
LoggedGrid. getRecordsBefore(RecordFilter filter, long end, int limit)
CloseableIterator<Record>
LoggedGrid. iterateRecords(RecordFilter filter)
<T> ChangeData<T>
LoggedGrid. mapRecords(RecordFilter filter, RecordChangeDataProducer<T> recordMapper, Optional<ChangeData<T>> incompleteChangeData)
Grid
LoggedGrid. removeRecords(RecordFilter filter)
-
Uses of RecordFilter in org.openrefine.runners.testing
Fields in org.openrefine.runners.testing declared as RecordFilter Modifier and Type Field Description protected static RecordFilter
RunnerTestBase. firstRecord
protected static RecordFilter
RunnerTestBase. myRecordFilter
Methods in org.openrefine.runners.testing with parameters of type RecordFilter Modifier and Type Method Description long
TestingGrid. countMatchingRecords(RecordFilter filter)
Grid.ApproxCount
TestingGrid. countMatchingRecordsApprox(RecordFilter filter, long limit)
List<Record>
TestingGrid. getRecordsAfter(RecordFilter filter, long start, int limit)
List<Record>
TestingGrid. getRecordsBefore(RecordFilter filter, long end, int limit)
CloseableIterator<Record>
TestingGrid. iterateRecords(RecordFilter filter)
<T> ChangeData<T>
TestingGrid. mapRecords(RecordFilter filter, RecordChangeDataProducer<T> recordMapper, Optional<ChangeData<T>> incompleteChangeData)
Grid
TestingGrid. removeRecords(RecordFilter filter)
-