Package | Description |
---|---|
org.apache.lucene.codecs |
Codecs API: API for customization of the encoding and structure of the index.
|
org.apache.lucene.codecs.lucene54 |
Lucene 5.4 file format.
|
org.apache.lucene.codecs.perfield |
Postings format that can delegate to different formats per-field.
|
org.apache.lucene.index |
Code to maintain and access indices.
|
org.apache.lucene.index.memory |
High-performance single-document main memory Apache Lucene fulltext search index.
|
org.apache.lucene.search |
Code to search indices.
|
org.apache.lucene.search.highlight |
Highlighting search terms.
|
org.apache.lucene.search.join |
Support for index-time and query-time joins.
|
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,
java.util.List<BinaryDocValues> toMerge,
java.util.List<Bits> docsWithField)
Merges the binary docvalues from
toMerge . |
Modifier and Type | Class and Description |
---|---|
(package private) static class |
Lucene54DocValuesProducer.CompressedBinaryDocValues |
(package private) static class |
Lucene54DocValuesProducer.LongBinaryDocValues |
Modifier and Type | Method and Description |
---|---|
BinaryDocValues |
Lucene54DocValuesProducer.getBinary(FieldInfo field) |
private BinaryDocValues |
Lucene54DocValuesProducer.getCompressedBinary(FieldInfo field,
Lucene54DocValuesProducer.BinaryEntry bytes) |
private BinaryDocValues |
Lucene54DocValuesProducer.getFixedBinary(FieldInfo field,
Lucene54DocValuesProducer.BinaryEntry bytes) |
private BinaryDocValues |
Lucene54DocValuesProducer.getVariableBinary(FieldInfo field,
Lucene54DocValuesProducer.BinaryEntry bytes) |
Modifier and Type | Method and Description |
---|---|
BinaryDocValues |
PerFieldDocValuesFormat.FieldsReader.getBinary(FieldInfo field) |
Modifier and Type | Class and Description |
---|---|
static class |
MultiDocValues.MultiSortedDocValues
Implements SortedDocValues over n subs, using an OrdinalMap
|
class |
SortedDocValues
A per-document byte[] with presorted values.
|
private static class |
SortingLeafReader.SortingBinaryDocValues |
private static class |
SortingLeafReader.SortingSortedDocValues |
Modifier and Type | Field and Description |
---|---|
private BinaryDocValues |
SortingLeafReader.SortingBinaryDocValues.in |
Modifier and Type | Method and Description |
---|---|
static BinaryDocValues |
DocValues.emptyBinary()
An empty BinaryDocValues which returns
BytesRef.EMPTY_BYTES for every document |
BinaryDocValues |
SegmentDocValuesProducer.getBinary(FieldInfo field) |
static BinaryDocValues |
DocValues.getBinary(LeafReader reader,
java.lang.String field)
Returns BinaryDocValues for the field, or
DocValues.emptyBinary() if it has none. |
BinaryDocValues |
CodecReader.getBinaryDocValues(java.lang.String field) |
BinaryDocValues |
FilterLeafReader.getBinaryDocValues(java.lang.String field) |
abstract BinaryDocValues |
LeafReader.getBinaryDocValues(java.lang.String field)
Returns
BinaryDocValues for this field, or
null if no BinaryDocValues were indexed for
this field. |
BinaryDocValues |
ParallelLeafReader.getBinaryDocValues(java.lang.String field) |
BinaryDocValues |
MergeReaderWrapper.getBinaryDocValues(java.lang.String field) |
BinaryDocValues |
SlowCompositeReaderWrapper.getBinaryDocValues(java.lang.String field)
Deprecated.
|
BinaryDocValues |
SortingLeafReader.getBinaryDocValues(java.lang.String field) |
static BinaryDocValues |
MultiDocValues.getBinaryValues(IndexReader r,
java.lang.String field)
Returns a BinaryDocValues for a reader's docvalues (potentially merging on-the-fly)
|
Modifier and Type | Method and Description |
---|---|
private static void |
CheckIndex.checkBinaryDocValues(java.lang.String fieldName,
int maxDoc,
BinaryDocValues dv,
Bits docsWithField) |
Constructor and Description |
---|
SortingBinaryDocValues(BinaryDocValues in,
Sorter.DocMap docMap) |
Modifier and Type | Method and Description |
---|---|
BinaryDocValues |
MemoryIndex.MemoryIndexReader.getBinaryDocValues(java.lang.String field) |
Modifier and Type | Class and Description |
---|---|
(package private) static class |
SortedSetSelector.MaxValue
Wraps a SortedSetDocValues and returns the last ordinal (max)
|
(package private) static class |
SortedSetSelector.MiddleMaxValue
Wraps a SortedSetDocValues and returns the middle ordinal (or max of the two)
|
(package private) static class |
SortedSetSelector.MiddleMinValue
Wraps a SortedSetDocValues and returns the middle ordinal (or min of the two)
|
(package private) static class |
SortedSetSelector.MinValue
Wraps a SortedSetDocValues and returns the first ordinal (min)
|
Modifier and Type | Field and Description |
---|---|
private BinaryDocValues |
FieldComparator.TermValComparator.docTerms |
Modifier and Type | Method and Description |
---|---|
protected BinaryDocValues |
FieldComparator.TermValComparator.getBinaryDocValues(LeafReaderContext context,
java.lang.String field)
Retrieves the BinaryDocValues for the field in this segment
|
Modifier and Type | Method and Description |
---|---|
BinaryDocValues |
TermVectorLeafReader.getBinaryDocValues(java.lang.String field) |
BinaryDocValues |
WeightedSpanTermExtractor.DelegatingLeafReader.getBinaryDocValues(java.lang.String field) |
Modifier and Type | Method and Description |
---|---|
(package private) static DocValuesTermsCollector.Function<BinaryDocValues> |
DocValuesTermsCollector.binaryDocValues(java.lang.String field) |
(package private) static DocValuesTermsCollector.Function<BinaryDocValues> |
DocValuesTermsCollector.numericAsBinaryDocValues(java.lang.String field,
FieldType.LegacyNumericType numTyp) |
Modifier and Type | Method and Description |
---|---|
static GenericTermsCollector |
GenericTermsCollector.createCollectorSV(DocValuesTermsCollector.Function<BinaryDocValues> svFunction,
ScoreMode mode) |
Constructor and Description |
---|
Avg(DocValuesTermsCollector.Function<BinaryDocValues> docValuesCall) |
SV(DocValuesTermsCollector.Function<BinaryDocValues> docValuesCall) |
SV(DocValuesTermsCollector.Function<BinaryDocValues> docValuesCall,
ScoreMode scoreMode) |
Modifier and Type | Method and Description |
---|---|
BinaryDocValues |
UninvertingReader.getBinaryDocValues(java.lang.String field)
Deprecated.
|
BinaryDocValues |
FieldCache.getTerms(LeafReader reader,
java.lang.String field,
boolean setDocsWithField)
Checks the internal cache for an appropriate entry, and if none
is found, reads the term values in
field
and returns a BinaryDocValues instance, providing a
method to retrieve the term (as a BytesRef) per document. |
BinaryDocValues |
FieldCacheImpl.getTerms(LeafReader reader,
java.lang.String field,
boolean setDocsWithField) |
BinaryDocValues |
FieldCache.getTerms(LeafReader reader,
java.lang.String field,
boolean setDocsWithField,
float acceptableOverheadRatio)
Expert: just like
FieldCache.getTerms(org.apache.lucene.index.LeafReader,String,boolean) ,
but you can specify whether more RAM should be consumed in exchange for
faster lookups (default is "true"). |
BinaryDocValues |
FieldCacheImpl.getTerms(LeafReader reader,
java.lang.String field,
boolean setDocsWithField,
float acceptableOverheadRatio) |
BinaryDocValues |
FieldCacheImpl.BinaryDocValuesImpl.iterator() |