Package com.bayesserver.data
Interface DataReaderFilter
-
- All Known Implementing Classes:
PartitionDataReaderFilter
public interface DataReaderFilterInterface to determine whether records should be filtered in a data reader.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleaninclude(DataRecord record)Determines whether a record should be included or not.
-
-
-
Method Detail
-
include
boolean include(DataRecord record)
Determines whether a record should be included or not.- Parameters:
record- The current record to include or exclude.- Returns:
- Returns
trueif the record should be included,falseif the recorded should be excluded.
-
-