Package | Description |
---|---|
org.apache.lucene.codecs |
Codecs API: API for customization of the encoding and structure of the index.
|
org.apache.lucene.facet.taxonomy |
Taxonomy of Categories.
|
org.apache.lucene.index |
Code to maintain and access indices.
|
org.apache.lucene.search |
Code to search indices.
|
org.apache.lucene.search.highlight |
Highlighting search terms.
|
org.apache.lucene.uninverting |
Support for creating docvalues on-the-fly from the inverted index at runtime.
|
Modifier and Type | Method and Description |
---|---|
abstract BinaryDocValues |
DocValuesProducer.getBinary(FieldInfo field)
Returns
BinaryDocValues for this field. |
Modifier and Type | Method and Description |
---|---|
void |
DocValuesConsumer.mergeBinaryField(FieldInfo fieldInfo,
MergeState mergeState,
List<BinaryDocValues> toMerge,
List<Bits> docsWithField)
Merges the binary docvalues from
toMerge . |
Modifier and Type | Method and Description |
---|---|
BinaryDocValues |
OrdinalMappingLeafReader.getBinaryDocValues(String field) |
Modifier and Type | Class and Description |
---|---|
static class |
AssertingLeafReader.AssertingBinaryDocValues
Wraps a BinaryDocValues but with additional asserts
|
static class |
AssertingLeafReader.AssertingSortedDocValues
Wraps a SortedDocValues but with additional asserts
|
static class |
MultiDocValues.MultiSortedDocValues
Implements SortedDocValues over n subs, using an OrdinalMap
|
class |
SortedDocValues
A per-document byte[] with presorted values.
|
Modifier and Type | Method and Description |
---|---|
static BinaryDocValues |
DocValues.emptyBinary()
An empty BinaryDocValues which returns
BytesRef.EMPTY_BYTES for every document |
static BinaryDocValues |
DocValues.getBinary(LeafReader reader,
String field)
Returns BinaryDocValues for the field, or
DocValues.emptyBinary() if it has none. |
BinaryDocValues |
SortingLeafReader.getBinaryDocValues(String field) |
BinaryDocValues |
AssertingLeafReader.getBinaryDocValues(String field) |
BinaryDocValues |
FieldFilterLeafReader.getBinaryDocValues(String field) |
BinaryDocValues |
CodecReader.getBinaryDocValues(String field) |
BinaryDocValues |
ParallelLeafReader.getBinaryDocValues(String field) |
BinaryDocValues |
FilterLeafReader.getBinaryDocValues(String field) |
abstract BinaryDocValues |
LeafReader.getBinaryDocValues(String field)
Returns
BinaryDocValues for this field, or
null if no BinaryDocValues were indexed for
this field. |
BinaryDocValues |
SlowCompositeReaderWrapper.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 |
---|
AssertingBinaryDocValues(BinaryDocValues in,
int maxDoc) |
Modifier and Type | Method and Description |
---|---|
protected BinaryDocValues |
FieldComparator.TermValComparator.getBinaryDocValues(LeafReaderContext context,
String field)
Retrieves the BinaryDocValues for the field in this segment
|
Modifier and Type | Method and Description |
---|---|
BinaryDocValues |
TermVectorLeafReader.getBinaryDocValues(String field) |
Modifier and Type | Method and Description |
---|---|
BinaryDocValues |
UninvertingReader.getBinaryDocValues(String field) |
Copyright © 2000–2015 The Apache Software Foundation. All rights reserved.