Class DocIdSet
A Doc
Inheritance
Inherited Members
Namespace: Lucene.Net.Search
Assembly: Lucene.Net.dll
Syntax
public abstract class DocIdSet
Properties
| Improve this Doc View SourceBits
Optionally provides a IBits interface for random access to matching documents.
Declaration
public virtual IBits Bits { get; }
Property Value
Type | Description |
---|---|
IBits |
|
IsCacheable
This method is a hint for Cachingfalse
. If you have an own Doctrue
.
Declaration
public virtual bool IsCacheable { get; }
Property Value
Type | Description |
---|---|
System. |
Methods
| Improve this Doc View SourceGetIterator()
Provides a Docnull
if there
are no docs that match.
Declaration
public abstract DocIdSetIterator GetIterator()
Returns
Type | Description |
---|---|
Doc |
NewAnonymous(Func<DocIdSetIterator>)
Creates a new instance with the ability to specify the body of the GetgetIterator
parameter.
Simple example:
var docIdSet = DocIdSet.NewAnonymous(getIterator: () =>
{
OpenBitSet bitset = new OpenBitSet(5);
bitset.Set(0, 5);
return new DocIdBitSet(bitset);
});
LUCENENET specific
Declaration
public static DocIdSet NewAnonymous(Func<DocIdSetIterator> getIterator)
Parameters
Type | Name | Description |
---|---|---|
System. |
getIterator | A delegate method that represents (is called by) the Get |
Returns
Type | Description |
---|---|
Doc |
A new Lucene. |
NewAnonymous(Func<DocIdSetIterator>, Func<IBits>)
Creates a new instance with the ability to specify the body of the GetgetIterator
parameter and the body of the Bits
property through the bits
parameter.
Simple example:
var docIdSet = DocIdSet.NewAnonymous(getIterator: () =>
{
OpenBitSet bitset = new OpenBitSet(5);
bitset.Set(0, 5);
return new DocIdBitSet(bitset);
}, bits: () =>
{
return bits;
});
LUCENENET specific
Declaration
public static DocIdSet NewAnonymous(Func<DocIdSetIterator> getIterator, Func<IBits> bits)
Parameters
Type | Name | Description |
---|---|---|
System. |
getIterator | A delegate method that represents (is called by) the Get |
System. |
bits | A delegate method that represents (is called by) the Bits
property. It returns the IBits instance for this Doc |
Returns
Type | Description |
---|---|
Doc |
A new Lucene. |
NewAnonymous(Func<DocIdSetIterator>, Func<IBits>, Func<Boolean>)
Creates a new instance with the ability to specify the body of the GetgetIterator
parameter and the body of the Bits
property through the bits
parameter.
Simple example:
var docIdSet = DocIdSet.NewAnonymous(getIterator: () =>
{
OpenBitSet bitset = new OpenBitSet(5);
bitset.Set(0, 5);
return new DocIdBitSet(bitset);
}, bits: () =>
{
return bits;
}, isCacheable: () =>
{
return true;
});
LUCENENET specific
Declaration
public static DocIdSet NewAnonymous(Func<DocIdSetIterator> getIterator, Func<IBits> bits, Func<bool> isCacheable)
Parameters
Type | Name | Description |
---|---|---|
System. |
getIterator | A delegate method that represents (is called by) the Get |
System. |
bits | A delegate method that represents (is called by) the Bits
property. It returns the IBits instance for this Doc |
System. |
isCacheable | A delegate method that represents (is called by) the Is |
Returns
Type | Description |
---|---|
Doc |
A new Lucene. |
NewAnonymous(Func<DocIdSetIterator>, Func<Boolean>)
Creates a new instance with the ability to specify the body of the GetgetIterator
parameter and the body of the IsisCacheable
parameter.
Simple example:
var docIdSet = DocIdSet.NewAnonymous(getIterator: () =>
{
OpenBitSet bitset = new OpenBitSet(5);
bitset.Set(0, 5);
return new DocIdBitSet(bitset);
}, isCacheable: () =>
{
return true;
});
LUCENENET specific
Declaration
public static DocIdSet NewAnonymous(Func<DocIdSetIterator> getIterator, Func<bool> isCacheable)
Parameters
Type | Name | Description |
---|---|---|
System. |
getIterator | A delegate method that represents (is called by) the Get |
System. |
isCacheable | A delegate method that represents (is called by) the Is |
Returns
Type | Description |
---|---|
Doc |
A new Lucene. |