| Accountables |
Helper methods for constructing nested resource descriptions
and debugging RAM usage.
|
| ArrayUtil |
Methods for manipulating arrays.
|
| AttributeFactory |
|
| AttributeFactory.StaticImplementationAttributeFactory<A extends AttributeImpl> |
Expert: AttributeFactory returning an instance of the given clazz for the
attributes it implements.
|
| AttributeImpl |
|
| AttributeSource |
An AttributeSource contains a list of different AttributeImpls,
and methods to add and get them.
|
| AttributeSource.State |
This class holds the state of an AttributeSource.
|
| BitDocIdSet |
|
| Bits.MatchAllBits |
Bits impl of the specified length with all bits set.
|
| Bits.MatchNoBits |
Bits impl of the specified length with no bits set.
|
| BitSet |
Base implementation for a bit set.
|
| BitSetIterator |
|
| BitUtil |
A variety of high efficiency bit twiddling routines.
|
| ByteBlockPool |
Class that Posting and PostingVector use to write byte
streams into shared fixed-size byte[] arrays.
|
| ByteBlockPool.Allocator |
Abstract class for allocating and freeing byte
blocks.
|
| ByteBlockPool.DirectAllocator |
|
| ByteBlockPool.DirectTrackingAllocator |
|
| BytesRef |
Represents byte[], as a slice (offset + length) into an
existing byte[].
|
| BytesRefArray |
A simple append only random-access BytesRef array that stores full
copies of the appended bytes in a ByteBlockPool.
|
| BytesRefBuilder |
|
| BytesRefComparator |
Specialized BytesRef comparator that
SortableBytesRefArray.iterator(Comparator) has optimizations
for.
|
| BytesRefHash |
|
| BytesRefHash.BytesStartArray |
Manages allocation of the per-term addresses.
|
| BytesRefHash.DirectBytesStartArray |
|
| CharsRef |
Represents char[], as a slice (offset + length) into an existing char[].
|
| CharsRefBuilder |
|
| CloseableThreadLocal<T> |
Java's builtin ThreadLocal has a serious flaw:
it can take an arbitrarily long amount of time to
dereference the things you had stored in it, even once the
ThreadLocal instance itself is no longer referenced.
|
| CollectionUtil |
Methods for manipulating (sorting) collections.
|
| CombinedBitSet |
A BitSet implementation that combines two instances of BitSet and Bits
to provide a single merged view.
|
| CommandLineUtil |
Class containing some useful methods used by command line tools
|
| Constants |
Some useful constants.
|
| Counter |
Simple counter class
|
| DocIdSetBuilder |
|
| DocIdSetBuilder.BulkAdder |
Utility class to efficiently add many docs in one go.
|
| FixedBitSet |
|
| FrequencyTrackingRingBuffer |
A ring buffer that tracks the frequency of the integers that it contains.
|
| FutureArrays |
|
| FutureObjects |
|
| InfoStream |
|
| InPlaceMergeSorter |
Sorter implementation based on the merge-sort algorithm that merges
in place (no extra memory will be allocated).
|
| IntBlockPool |
|
| IntBlockPool.Allocator |
Abstract class for allocating and freeing int
blocks.
|
| IntBlockPool.DirectAllocator |
|
| IntBlockPool.SliceReader |
|
| IntBlockPool.SliceWriter |
|
| IntroSelector |
Implementation of the quick select algorithm.
|
| IntroSorter |
Sorter implementation based on a variant of the quicksort algorithm
called introsort: when
the recursion level exceeds the log of the length of the array to sort, it
falls back to heapsort.
|
| IntsRef |
Represents int[], as a slice (offset + length) into an
existing int[].
|
| IntsRefBuilder |
|
| IOUtils |
This class emulates the new Java 7 "Try-With-Resources" statement.
|
| LongBitSet |
BitSet of fixed length (numBits), backed by accessible ( LongBitSet.getBits())
long[], accessed with a long index.
|
| LongsRef |
Represents long[], as a slice (offset + length) into an
existing long[].
|
| LongValues |
Abstraction over an array of longs.
|
| LSBRadixSorter |
A LSB Radix sorter for unsigned int values.
|
| MathUtil |
Math static utility methods.
|
| MergedIterator<T extends Comparable<T>> |
Provides a merged sorted view from several sorted iterators.
|
| MSBRadixSorter |
Radix sorter for variable-length strings.
|
| NamedSPILoader<S extends NamedSPILoader.NamedSPI> |
Helper class for loading named SPIs from classpath (e.g.
|
| NotDocIdSet |
|
| NumericUtils |
Helper APIs to encode numeric values as sortable bytes and vice-versa.
|
| OfflineSorter |
On-disk sorting of byte arrays.
|
| OfflineSorter.BufferSize |
A bit more descriptive unit for constructors.
|
| OfflineSorter.ByteSequencesReader |
Utility class to read length-prefixed byte[] entries from an input.
|
| OfflineSorter.ByteSequencesWriter |
Utility class to emit length-prefixed byte[] entries to an output stream for sorting.
|
| PagedBytes |
Represents a logical byte[] as a series of pages.
|
| PagedBytes.Reader |
Provides methods to read BytesRefs from a frozen
PagedBytes.
|
| PrintStreamInfoStream |
InfoStream implementation over a PrintStream
such as System.out.
|
| PriorityQueue<T> |
A PriorityQueue maintains a partial ordering of its elements such that the
least element can always be found in constant time.
|
| QueryBuilder |
Creates queries from the Analyzer chain.
|
| RadixSelector |
Radix selector.
|
| RamUsageEstimator |
Estimates the size (memory representation) of Java objects.
|
| RecyclingByteBlockAllocator |
|
| RecyclingIntBlockAllocator |
|
| RefCount<T> |
Manages reference counting for a given object.
|
| RoaringDocIdSet |
DocIdSet implementation inspired from http://roaringbitmap.org/
The space is divided into blocks of 2^16 bits and each block is encoded
independently.
|
| RoaringDocIdSet.Builder |
|
| RollingBuffer<T extends RollingBuffer.Resettable> |
Acts like forever growing T[], but internally uses a
circular buffer to reuse instances of T.
|
| SameThreadExecutorService |
An ExecutorService that executes tasks immediately in the calling thread during submit.
|
| Selector |
An implementation of a selection algorithm, ie.
|
| SentinelIntSet |
A native int hash-based set where one value is reserved to mean "EMPTY" internally.
|
| SetOnce<T> |
A convenient class which offers a semi-immutable object wrapper
implementation which allows one to set the value of an object exactly once,
and retrieve it many times.
|
| SloppyMath |
Math functions that trade off accuracy for speed.
|
| SmallFloat |
Floating point numbers smaller than 32 bits.
|
| Sorter |
Base class for sorting algorithms implementations.
|
| SparseFixedBitSet |
A bit set that only stores longs that have at least one bit which is set.
|
| SPIClassIterator<S> |
Helper class for loading SPI classes from classpath (META-INF files).
|
| StringHelper |
Methods for manipulating strings.
|
| TimSorter |
|
| UnicodeUtil |
Class to encode java's UTF16 char[] into UTF8 byte[]
without always allocating a new byte[] as
String.getBytes(StandardCharsets.UTF_8) does.
|
| Version |
Use by certain classes to match version compatibility
across releases of Lucene.
|