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