Package | Description |
---|---|
org.apache.lucene.codecs |
Codecs API: API for customization of the encoding and structure of the index.
|
org.apache.lucene.index |
Code to maintain and access indices.
|
org.apache.lucene.search |
Code to search indices.
|
Modifier and Type | Method and Description |
---|---|
abstract NumericDocValues |
NormsProducer.getNorms(FieldInfo field)
Returns
NumericDocValues for this field. |
abstract NumericDocValues |
DocValuesProducer.getNumeric(FieldInfo field)
Returns
NumericDocValues for this field. |
Modifier and Type | Class and Description |
---|---|
class |
FilterNumericDocValues
Delegates all methods to a wrapped
NumericDocValues . |
class |
LegacyNumericDocValuesWrapper
Deprecated.
Implement
NumericDocValues directly. |
Modifier and Type | Field and Description |
---|---|
protected NumericDocValues |
FilterNumericDocValues.in
Wrapped values
|
Modifier and Type | Method and Description |
---|---|
static NumericDocValues |
DocValues.emptyNumeric()
An empty NumericDocValues which returns no documents
|
static NumericDocValues |
MultiDocValues.getNormValues(IndexReader r,
String field)
Returns a NumericDocValues for a reader's norms (potentially merging on-the-fly).
|
abstract NumericDocValues |
LeafReader.getNormValues(String field)
Returns
NumericDocValues representing norms
for this field, or null if no NumericDocValues
were indexed. |
NumericDocValues |
ParallelLeafReader.getNormValues(String field) |
NumericDocValues |
FilterLeafReader.getNormValues(String field) |
NumericDocValues |
CodecReader.getNormValues(String field) |
NumericDocValues |
EmptyDocValuesProducer.getNumeric(FieldInfo field) |
static NumericDocValues |
DocValues.getNumeric(LeafReader reader,
String field)
Returns NumericDocValues for the field, or
DocValues.emptyNumeric() if it has none. |
abstract NumericDocValues |
LeafReader.getNumericDocValues(String field)
Returns
NumericDocValues for this field, or
null if no numeric doc values were indexed for
this field. |
NumericDocValues |
ParallelLeafReader.getNumericDocValues(String field) |
NumericDocValues |
FilterLeafReader.getNumericDocValues(String field) |
NumericDocValues |
CodecReader.getNumericDocValues(String field) |
static NumericDocValues |
MultiDocValues.getNumericValues(IndexReader r,
String field)
Returns a NumericDocValues for a reader's docvalues (potentially merging on-the-fly)
|
static NumericDocValues |
DocValues.unwrapSingleton(SortedNumericDocValues dv)
Returns a single-valued view of the SortedNumericDocValues, if it was previously
wrapped with
DocValues.singleton(NumericDocValues) , or null. |
Modifier and Type | Method and Description |
---|---|
static SortedNumericDocValues |
DocValues.singleton(NumericDocValues dv)
Returns a multi-valued view over the provided NumericDocValues
|
Constructor and Description |
---|
FilterNumericDocValues(NumericDocValues in)
Sole constructor
|
Modifier and Type | Field and Description |
---|---|
protected NumericDocValues |
FieldComparator.NumericComparator.currentReaderValues |
Modifier and Type | Method and Description |
---|---|
protected NumericDocValues |
FieldComparator.NumericComparator.getNumericDocValues(LeafReaderContext context,
String field)
Retrieves the NumericDocValues for the field in this segment
|
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-2018 Apache Software Foundation. All Rights Reserved.