Package com.google.refine.browsing
Interface FilteredRows
- All Known Implementing Classes:
ConjunctiveFilteredRows,FilteredRecordsAsFilteredRows
public interface FilteredRows
Interface for anything that can decide which rows match and which rows don't match
based on some particular criteria.
-
Method Summary
Modifier and TypeMethodDescriptionvoidaccept(Project project, RowVisitor visitor) Go through the rows of the given project, determine which match and which don't, and call visitor.visit() on those that match, and possibly their context and dependent rows.
-
Method Details
-
accept
Go through the rows of the given project, determine which match and which don't, and call visitor.visit() on those that match, and possibly their context and dependent rows.- Parameters:
project-visitor-
-