Class BitsFilteredDocIdSet
This implementation supplies a filtered Doc
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Lucene.Net.Search
Assembly: Lucene.Net.dll
Syntax
public sealed class BitsFilteredDocIdSet : FilteredDocIdSet
Constructors
| Improve this Doc View SourceBitsFilteredDocIdSet(DocIdSet, IBits)
Constructor.
Declaration
public BitsFilteredDocIdSet(DocIdSet innerSet, IBits acceptDocs)
Parameters
Type | Name | Description |
---|---|---|
Doc |
innerSet | Underlying Doc |
IBits | acceptDocs | Allowed docs, all docids not in this set will not be returned by this Doc |
Methods
| Improve this Doc View SourceMatch(Int32)
Declaration
protected override bool Match(int docid)
Parameters
Type | Name | Description |
---|---|---|
System. |
docid |
Returns
Type | Description |
---|---|
System. |
Overrides
| Improve this Doc View SourceWrap(DocIdSet, IBits)
Convenience wrapper method: If acceptDocs == null
it returns the original set without wrapping.
Declaration
public static DocIdSet Wrap(DocIdSet set, IBits acceptDocs)
Parameters
Type | Name | Description |
---|---|---|
Doc |
set | Underlying DocIdSet. If |
IBits | acceptDocs | Allowed docs, all docids not in this set will not be returned by this Doc |
Returns
Type | Description |
---|---|
Doc |