- Type Parameters:
T -
- Direct Known Subclasses:
- AdjacentToRelationFilter, ChunkedBinaryExtractionStringLengthFilter, ChunkedBinaryExtractionWordCountFilter, ConjunctionCommaArgumentFilter, NormalizedRelationDictionaryFilter, PronounArgumentFilter, ReVerbRelationDictionaryFilter, SentenceEndFilter, SentenceLengthFilter, SentenceStartFilter, StopListFilter
public abstract class FilterMapper<T>
extends Mapper<T>
A type of mapper that filters each object in the stream independently. Subclasses
extending this class only have to implement the doFilter(T object) method,
which should return true if object should remain in the stream,
and false if the object should be removed from the stream.
- Author:
- afader