Package org.dbunit.dataset.filter
Interface IRowFilter
public interface IRowFilter
Interface to filter out rows by checking specific column values provided by the
IRowValueProvider.- Since:
- 2.3.0
- Version:
- $Revision$ $Date$
- Author:
- gommma, Last changed by: $Author$
-
Method Summary
Modifier and TypeMethodDescriptionbooleanaccept(IRowValueProvider rowValueProvider) Checks if the current row should be accepted or not
-
Method Details
-
accept
Checks if the current row should be accepted or not- Parameters:
rowValueProvider- provides arbitrary column values of the current row to be checked.- Returns:
- True if the given value (and so that current row) should be accepted
-