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 BinaryDocValues |
DocValuesProducer.getBinary(FieldInfo field)
Returns
BinaryDocValues for this field. |
Modifier and Type | Class and Description |
---|---|
class |
FilterBinaryDocValues
Delegates all methods to a wrapped
BinaryDocValues . |
class |
FilterSortedDocValues
Delegates all methods to a wrapped
SortedDocValues . |
static class |
MultiDocValues.MultiSortedDocValues
Implements SortedDocValues over n subs, using an OrdinalMap
|
class |
SortedDocValues
A per-document byte[] with presorted values.
|
Modifier and Type | Field and Description |
---|---|
protected BinaryDocValues |
FilterBinaryDocValues.in
Wrapped values
|
Modifier and Type | Method and Description |
---|---|
static BinaryDocValues |
DocValues.emptyBinary()
An empty
BinaryDocValues which returns no documents |
BinaryDocValues |
EmptyDocValuesProducer.getBinary(FieldInfo field) |
static BinaryDocValues |
DocValues.getBinary(LeafReader reader,
String field)
Returns BinaryDocValues for the field, or
DocValues.emptyBinary() if it has none. |
BinaryDocValues |
ParallelLeafReader.getBinaryDocValues(String field) |
BinaryDocValues |
CodecReader.getBinaryDocValues(String field) |
BinaryDocValues |
ExitableDirectoryReader.ExitableFilterAtomicReader.getBinaryDocValues(String field) |
abstract BinaryDocValues |
LeafReader.getBinaryDocValues(String field)
Returns
BinaryDocValues for this field, or
null if no binary doc values were indexed for
this field. |
BinaryDocValues |
FilterLeafReader.getBinaryDocValues(String field) |
static BinaryDocValues |
MultiDocValues.getBinaryValues(IndexReader r,
String field)
Returns a BinaryDocValues for a reader's docvalues (potentially merging on-the-fly)
|
Constructor and Description |
---|
FilterBinaryDocValues(BinaryDocValues in)
Sole constructor
|
Modifier and Type | Method and Description |
---|---|
protected BinaryDocValues |
FieldComparator.TermValComparator.getBinaryDocValues(LeafReaderContext context,
String field)
Retrieves the BinaryDocValues for the field in this segment
|
Copyright © 2000-2024 Apache Software Foundation. All Rights Reserved.