C# Class Lucene.Net.Util.FixedBitSet.FixedBitSetIterator

A DocIdSetIterator which iterates over set bits in a FixedBitSet.
Inheritance: DocIdSetIterator
显示文件 Open project: paulirwin/lucene.net

Public Methods

Method Description
Advance ( int target ) : int
Cost ( ) : long
DocID ( ) : int
FixedBitSetIterator ( FixedBitSet bits ) : System

Creates an iterator over the given FixedBitSet.

FixedBitSetIterator ( long bits, int numBits, int wordLength ) : System

Creates an iterator over the given array of bits.

NextDoc ( ) : int

Method Details

Advance() public method

public Advance ( int target ) : int
target int
return int

Cost() public method

public Cost ( ) : long
return long

DocID() public method

public DocID ( ) : int
return int

FixedBitSetIterator() public method

Creates an iterator over the given FixedBitSet.
public FixedBitSetIterator ( FixedBitSet bits ) : System
bits FixedBitSet
return System

FixedBitSetIterator() public method

Creates an iterator over the given array of bits.
public FixedBitSetIterator ( long bits, int numBits, int wordLength ) : System
bits long
numBits int
wordLength int
return System

NextDoc() public method

public NextDoc ( ) : int
return int