Package org.apache.lucene.search
Class DuplicateFilter
- java.lang.Object
-
- org.apache.lucene.search.Filter
-
- org.apache.lucene.search.DuplicateFilter
-
- All Implemented Interfaces:
Serializable
public class DuplicateFilter extends Filter
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static intKM_USE_FIRST_OCCURRENCEstatic intKM_USE_LAST_OCCURRENCEstatic intPM_FAST_INVALIDATIONstatic intPM_FULL_VALIDATION
-
Constructor Summary
Constructors Constructor Description DuplicateFilter(String fieldName)DuplicateFilter(String fieldName, int keepMode, int processingMode)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)DocIdSetgetDocIdSet(IndexReader reader)Creates aDocIdSetenumerating the documents that should be permitted in search results.StringgetFieldName()intgetKeepMode()intgetProcessingMode()inthashCode()voidsetFieldName(String fieldName)voidsetKeepMode(int keepMode)voidsetProcessingMode(int processingMode)
-
-
-
Field Detail
-
KM_USE_FIRST_OCCURRENCE
public static final int KM_USE_FIRST_OCCURRENCE
- See Also:
- Constant Field Values
-
KM_USE_LAST_OCCURRENCE
public static final int KM_USE_LAST_OCCURRENCE
- See Also:
- Constant Field Values
-
PM_FULL_VALIDATION
public static final int PM_FULL_VALIDATION
- See Also:
- Constant Field Values
-
PM_FAST_INVALIDATION
public static final int PM_FAST_INVALIDATION
- See Also:
- Constant Field Values
-
-
Method Detail
-
getDocIdSet
public DocIdSet getDocIdSet(IndexReader reader) throws IOException
Description copied from class:FilterCreates aDocIdSetenumerating the documents that should be permitted in search results. NOTE: null can be returned if no documents are accepted by this Filter.Note: This method will be called once per segment in the index during searching. The returned
DocIdSetmust refer to document IDs for that segment, not for the top-level reader.- Specified by:
getDocIdSetin classFilter- Parameters:
reader- aIndexReaderinstance opened on the index currently searched on. Note, it is likely that the provided reader does not represent the whole underlying index i.e. if the index has more than one segment the given reader only represents a single segment.- Returns:
- a DocIdSet that provides the documents which should be permitted or prohibited in search results. NOTE: null can be returned if no documents will be accepted by this Filter.
- Throws:
IOException- See Also:
DocIdBitSet
-
getFieldName
public String getFieldName()
-
setFieldName
public void setFieldName(String fieldName)
-
getKeepMode
public int getKeepMode()
-
setKeepMode
public void setKeepMode(int keepMode)
-
getProcessingMode
public int getProcessingMode()
-
setProcessingMode
public void setProcessingMode(int processingMode)
-
-