Interface IOnMatchFilter
-
- All Known Implementing Classes:
AbstractCharStreamFilter
,AbstractDocumentFilter
,AbstractOnMatchFilter
,AbstractStringFilter
,DateMetadataFilter
,DOMContentFilter
,DOMFilter
,EmptyFilter
,EmptyMetadataFilter
,NumericMetadataFilter
,ReferenceFilter
,RegexContentFilter
,RegexMetadataFilter
,RegexReferenceFilter
,ScriptFilter
,TextFilter
public interface IOnMatchFilter
Tells the collector that a filter is of "OnMatch" type. This means if one or more filters of type "include" exist in a set of filters, at least one of them must be matched for a document (or other) to be "included". Only one filter of type "exclude" needs to be matched or the document (or other) to be excluded. Filters of type "exclude" have precedence over includes.- Author:
- Pascal Essiembre
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OnMatch
getOnMatch()
Gets the the on match action (exclude or include).
-
-
-
Method Detail
-
getOnMatch
OnMatch getOnMatch()
Gets the the on match action (exclude or include).- Returns:
- on match (exclude or include)
-
-