How to filter rows of an ITable by checking their column values?
By implementing the interface IRowFilter it is possible to query column values and to return either true if this row should be accepted or false if it should be filtered out. IRowFilter rowFilter = new IRowFilter() { public boolean accept(IRowValueProvider rowValueProvider) { Object columnValue = rowValueProvider.getColumnValue(“COLUMN1”); if(((String)columnValue).