Class RowFilterTable

java.lang.Object
org.dbunit.dataset.RowFilterTable
All Implemented Interfaces:
IRowValueProvider, ITable

public class RowFilterTable extends Object implements ITable, IRowValueProvider
Filters table rows by using arbitrary column values of the table to check if a row should be filtered or not.
Implemented as a decorator for ITable. See dbunit feature request at #1959771
Since:
2.3.0
Version:
$Revision$ $Date$
Author:
gommma, Last changed by: $Author$
  • Constructor Details

    • RowFilterTable

      public RowFilterTable(ITable table, IRowFilter rowFilter) throws DataSetException
      Creates a new ITable where some rows can be filtered out from the original table
      Parameters:
      table - The table to be wrapped
      rowFilter - The row filter that checks for every row whether or not it should be filtered
      Throws:
      DataSetException
  • Method Details