Package com.bayesserver.data
Interface DataReaderFilter
-
- All Known Implementing Classes:
PartitionDataReaderFilter
public interface DataReaderFilter
Interface to determine whether records should be filtered in a data reader.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
include(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
true
if the record should be included,false
if the recorded should be excluded.
-
-