Apache Lucene.Net 2.1 Class Library API

Lucene.Net.Util Namespace

Namespace hierarchy

Classes

Class Description
BitVector Optimized implementation of a vector of bits. This is more-or-less like java.util.BitSet, but also includes the following:
  • a count() method, which efficiently computes the number of one bits;
  • optimized read from and write to disk;
  • inlinable get() method;
  • store and load, as bit set or d-gaps, depending on sparseness;
Constants Some useful constants.
Parameter A serializable Enum class.
PriorityQueue A PriorityQueue maintains a partial ordering of its elements such that the least element can always be found in constant time. Put()'s and pop()'s require log(size) time.
ScorerDocQueue A ScorerDocQueue maintains a partial ordering of its Scorers such that the least Scorer can always be found in constant time. Put()'s and pop()'s require log(size) time. The ordering is by Scorer.doc().
SmallFloat Floating point numbers smaller than 32 bits.
StringHelper Methods for manipulating strings. $Id: StringHelper.java 472959 2006-11-09 16:21:50Z yonik $
ToStringUtils