Uses of Class
org.apache.lucene.index.BinaryDocValues
-
Packages that use BinaryDocValues Package Description org.apache.lucene.backward_codecs.lucene70 Components from the Lucene 7.0 index format.org.apache.lucene.backward_codecs.lucene80 Components from the Lucene 8.0 index format.org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.codecs.lucene90 Lucene 9.0 file format.org.apache.lucene.codecs.perfield Postings format that can delegate to different formats per-field.org.apache.lucene.codecs.simpletext Simpletext Codec: writes human readable postings.org.apache.lucene.document The logical representation of aDocument
for indexing and searching.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.monitor Monitoring frameworkorg.apache.lucene.search Code to search indices.org.apache.lucene.search.highlight Highlighting search terms. -
-
Uses of BinaryDocValues in org.apache.lucene.backward_codecs.lucene70
Subclasses of BinaryDocValues in org.apache.lucene.backward_codecs.lucene70 Modifier and Type Class Description private static class
Lucene70DocValuesProducer.DenseBinaryDocValues
private static class
Lucene70DocValuesProducer.SparseBinaryDocValues
Methods in org.apache.lucene.backward_codecs.lucene70 that return BinaryDocValues Modifier and Type Method Description BinaryDocValues
Lucene70DocValuesProducer. getBinary(FieldInfo field)
-
Uses of BinaryDocValues in org.apache.lucene.backward_codecs.lucene80
Subclasses of BinaryDocValues in org.apache.lucene.backward_codecs.lucene80 Modifier and Type Class Description private static class
Lucene80DocValuesProducer.DenseBinaryDocValues
private static class
Lucene80DocValuesProducer.SparseBinaryDocValues
Methods in org.apache.lucene.backward_codecs.lucene80 that return BinaryDocValues Modifier and Type Method Description BinaryDocValues
Lucene80DocValuesProducer. getBinary(FieldInfo field)
private BinaryDocValues
Lucene80DocValuesProducer. getCompressedBinary(Lucene80DocValuesProducer.BinaryEntry entry)
private BinaryDocValues
Lucene80DocValuesProducer. getUncompressedBinary(Lucene80DocValuesProducer.BinaryEntry entry)
-
Uses of BinaryDocValues in org.apache.lucene.codecs
Fields in org.apache.lucene.codecs declared as BinaryDocValues Modifier and Type Field Description (package private) BinaryDocValues
DocValuesConsumer.BinaryDocValuesSub. values
Methods in org.apache.lucene.codecs that return BinaryDocValues Modifier and Type Method Description abstract BinaryDocValues
DocValuesProducer. getBinary(FieldInfo field)
ReturnsBinaryDocValues
for this field.Constructors in org.apache.lucene.codecs with parameters of type BinaryDocValues Constructor Description BinaryDocValuesSub(MergeState.DocMap docMap, BinaryDocValues values)
-
Uses of BinaryDocValues in org.apache.lucene.codecs.lucene90
Subclasses of BinaryDocValues in org.apache.lucene.codecs.lucene90 Modifier and Type Class Description private static class
Lucene90DocValuesProducer.DenseBinaryDocValues
private static class
Lucene90DocValuesProducer.SparseBinaryDocValues
Methods in org.apache.lucene.codecs.lucene90 that return BinaryDocValues Modifier and Type Method Description BinaryDocValues
Lucene90DocValuesProducer. getBinary(FieldInfo field)
-
Uses of BinaryDocValues in org.apache.lucene.codecs.perfield
Methods in org.apache.lucene.codecs.perfield that return BinaryDocValues Modifier and Type Method Description BinaryDocValues
PerFieldDocValuesFormat.FieldsReader. getBinary(FieldInfo field)
-
Uses of BinaryDocValues in org.apache.lucene.codecs.simpletext
Methods in org.apache.lucene.codecs.simpletext that return BinaryDocValues Modifier and Type Method Description BinaryDocValues
SimpleTextDocValuesReader. getBinary(FieldInfo fieldInfo)
-
Uses of BinaryDocValues in org.apache.lucene.document
Subclasses of BinaryDocValues in org.apache.lucene.document Modifier and Type Class Description class
BinaryRangeDocValues
A binary representation of a range that wraps a BinaryDocValues fieldFields in org.apache.lucene.document declared as BinaryDocValues Modifier and Type Field Description private BinaryDocValues
BinaryRangeDocValues. in
Constructors in org.apache.lucene.document with parameters of type BinaryDocValues Constructor Description BinaryRangeDocValues(BinaryDocValues in, int numDims, int numBytesPerDimension)
Constructor for BinaryRangeDocValues -
Uses of BinaryDocValues in org.apache.lucene.index
Subclasses of BinaryDocValues in org.apache.lucene.index Modifier and Type Class Description private static class
BinaryDocValuesWriter.BufferedBinaryDocValues
(package private) static class
BinaryDocValuesWriter.SortingBinaryDocValues
class
FilterBinaryDocValues
Delegates all methods to a wrappedBinaryDocValues
.Fields in org.apache.lucene.index declared as BinaryDocValues Modifier and Type Field Description protected BinaryDocValues
FilterBinaryDocValues. in
Wrapped valuesMethods in org.apache.lucene.index that return BinaryDocValues Modifier and Type Method Description (package private) static BinaryDocValues
DocValuesFieldUpdates.Iterator. asBinaryDocValues(DocValuesFieldUpdates.Iterator iterator)
Wraps the given iterator as a BinaryDocValues instance.static BinaryDocValues
DocValues. emptyBinary()
An emptyBinaryDocValues
which returns no documentsstatic BinaryDocValues
DocValues. getBinary(LeafReader reader, java.lang.String field)
Returns BinaryDocValues for the field, orDocValues.emptyBinary()
if it has none.BinaryDocValues
EmptyDocValuesProducer. getBinary(FieldInfo field)
BinaryDocValues
SegmentDocValuesProducer. getBinary(FieldInfo field)
BinaryDocValues
SlowCompositeCodecReaderWrapper.SlowCompositeDocValuesProducerWrapper. getBinary(FieldInfo field)
BinaryDocValues
CodecReader. getBinaryDocValues(java.lang.String field)
BinaryDocValues
ExitableDirectoryReader.ExitableFilterAtomicReader. getBinaryDocValues(java.lang.String field)
BinaryDocValues
FilterLeafReader. getBinaryDocValues(java.lang.String field)
abstract BinaryDocValues
LeafReader. getBinaryDocValues(java.lang.String field)
ReturnsBinaryDocValues
for this field, or null if no binary doc values were indexed for this field.BinaryDocValues
ParallelLeafReader. 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)(package private) BinaryDocValues
BinaryDocValuesWriter. getDocValues()
Methods in org.apache.lucene.index with parameters of type BinaryDocValues Modifier and Type Method Description private static void
CheckIndex. checkBinaryDocValues(java.lang.String fieldName, int maxDoc, BinaryDocValues bdv, BinaryDocValues bdv2)
Constructors in org.apache.lucene.index with parameters of type BinaryDocValues Constructor Description BinaryDVs(int maxDoc, Sorter.DocMap sortMap, BinaryDocValues oldValues)
FilterBinaryDocValues(BinaryDocValues in)
Sole constructor -
Uses of BinaryDocValues in org.apache.lucene.index.memory
Methods in org.apache.lucene.index.memory that return BinaryDocValues Modifier and Type Method Description BinaryDocValues
MemoryIndex.MemoryIndexReader. getBinaryDocValues(java.lang.String field)
-
Uses of BinaryDocValues in org.apache.lucene.monitor
Fields in org.apache.lucene.monitor declared as BinaryDocValues Modifier and Type Field Description (package private) BinaryDocValues
QueryIndex.DataValues. mq
-
Uses of BinaryDocValues in org.apache.lucene.search
Fields in org.apache.lucene.search declared as BinaryDocValues Modifier and Type Field Description private BinaryDocValues
FieldComparator.TermValComparator. docTerms
Methods in org.apache.lucene.search that return BinaryDocValues Modifier and Type Method Description protected BinaryDocValues
FieldComparator.TermValComparator. getBinaryDocValues(LeafReaderContext context, java.lang.String field)
Retrieves the BinaryDocValues for the field in this segment -
Uses of BinaryDocValues in org.apache.lucene.search.highlight
Methods in org.apache.lucene.search.highlight that return BinaryDocValues Modifier and Type Method Description BinaryDocValues
TermVectorLeafReader. getBinaryDocValues(java.lang.String field)
BinaryDocValues
WeightedSpanTermExtractor.DelegatingLeafReader. getBinaryDocValues(java.lang.String field)
-