Package | Description |
---|---|
org.apache.lucene.codecs |
Codecs for testing (simulate old disk formats, wacky theoretical use cases, etc)
|
org.apache.lucene.index |
Misc index tools and index support.
|
org.apache.lucene.index.sorter |
Provides index sorting capablities.
|
org.apache.lucene.search |
This package contains a single proximity query, TermAutomatonQuery.
|
Modifier and Type | Method and Description |
---|---|
abstract SortedNumericDocValues |
DocValuesProducer.getSortedNumeric(FieldInfo field)
Returns
SortedNumericDocValues for this field. |
Modifier and Type | Method and Description |
---|---|
void |
DocValuesConsumer.mergeSortedNumericField(FieldInfo fieldInfo,
MergeState mergeState,
List<SortedNumericDocValues> toMerge)
Merges the sorted docvalues from
toMerge . |
Modifier and Type | Class and Description |
---|---|
static class |
AssertingAtomicReader.AssertingSortedNumericDocValues
Wraps a SortedSetDocValues but with additional asserts
|
Modifier and Type | Method and Description |
---|---|
static SortedNumericDocValues |
DocValues.emptySortedNumeric(int maxDoc)
An empty SortedNumericDocValues which returns zero values for every document
|
static SortedNumericDocValues |
DocValues.getSortedNumeric(AtomicReader in,
String field)
Returns SortedNumericDocValues for the reader, or
DocValues.emptySortedNumeric(int) if it has none. |
SortedNumericDocValues |
FieldFilterAtomicReader.getSortedNumericDocValues(String field) |
SortedNumericDocValues |
AssertingAtomicReader.getSortedNumericDocValues(String field) |
SortedNumericDocValues |
FilterAtomicReader.getSortedNumericDocValues(String field) |
SortedNumericDocValues |
SlowCompositeReaderWrapper.getSortedNumericDocValues(String field) |
SortedNumericDocValues |
ParallelAtomicReader.getSortedNumericDocValues(String field) |
SortedNumericDocValues |
SegmentReader.getSortedNumericDocValues(String field) |
abstract SortedNumericDocValues |
AtomicReader.getSortedNumericDocValues(String field)
Returns
SortedNumericDocValues for this field, or
null if no SortedNumericDocValues were indexed for
this field. |
static SortedNumericDocValues |
MultiDocValues.getSortedNumericValues(IndexReader r,
String field)
Returns a SortedNumericDocValues for a reader's docvalues (potentially merging on-the-fly)
|
static SortedNumericDocValues |
DocValues.singleton(NumericDocValues dv,
Bits docsWithField)
Returns a multi-valued view over the provided NumericDocValues
|
Modifier and Type | Method and Description |
---|---|
static Bits |
DocValues.docsWithValue(SortedNumericDocValues dv,
int maxDoc)
Returns a Bits representing all documents from
dv that have a value. |
static NumericDocValues |
DocValues.unwrapSingleton(SortedNumericDocValues dv)
Returns a single-valued view of the SortedNumericDocValues, if it was previously
wrapped with
DocValues.singleton(NumericDocValues, Bits) , or null. |
static Bits |
DocValues.unwrapSingletonBits(SortedNumericDocValues dv)
Returns the documents with a value for the SortedNumericDocValues, if it was previously
wrapped with
DocValues.singleton(NumericDocValues, Bits) , or null. |
Constructor and Description |
---|
AssertingSortedNumericDocValues(SortedNumericDocValues in,
int maxDoc) |
Modifier and Type | Method and Description |
---|---|
SortedNumericDocValues |
SortingAtomicReader.getSortedNumericDocValues(String field) |
Modifier and Type | Method and Description |
---|---|
static NumericDocValues |
SortedNumericSelector.wrap(SortedNumericDocValues sortedNumeric,
SortedNumericSelector.Type selector,
SortField.Type numericType)
Wraps a multi-valued SortedNumericDocValues as a single-valued view, using the specified selector
and numericType.
|
Copyright © 2000–2021 The Apache Software Foundation. All rights reserved.