Uses of Class
org.apache.lucene.index.BinaryDocValues
-
Packages that use BinaryDocValues Package Description org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.codecs.lucene45 Lucene 4.5 file format.org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.search Code to search indices. -
-
Uses of BinaryDocValues in org.apache.lucene.codecs
Methods in org.apache.lucene.codecs that return BinaryDocValues Modifier and Type Method Description abstract BinaryDocValues
DocValuesProducer. getBinary(FieldInfo field)
ReturnsBinaryDocValues
for this field.Method parameters in org.apache.lucene.codecs with type arguments of type BinaryDocValues Modifier and Type Method Description void
DocValuesConsumer. mergeBinaryField(FieldInfo fieldInfo, MergeState mergeState, List<BinaryDocValues> toMerge, List<Bits> docsWithField)
Merges the binary docvalues fromtoMerge
. -
Uses of BinaryDocValues in org.apache.lucene.codecs.lucene45
Methods in org.apache.lucene.codecs.lucene45 that return BinaryDocValues Modifier and Type Method Description BinaryDocValues
Lucene45DocValuesProducer. getBinary(FieldInfo field)
-
Uses of BinaryDocValues in org.apache.lucene.index
Subclasses of BinaryDocValues in org.apache.lucene.index Modifier and Type Class Description static class
MultiDocValues.MultiSortedDocValues
Implements SortedDocValues over n subs, using an OrdinalMapclass
SortedDocValues
A per-document byte[] with presorted values.Fields in org.apache.lucene.index declared as BinaryDocValues Modifier and Type Field Description static BinaryDocValues
BinaryDocValues. EMPTY
An empty BinaryDocValues which returnsBytesRef.EMPTY_BYTES
for every documentMethods in org.apache.lucene.index that return BinaryDocValues Modifier and Type Method Description abstract BinaryDocValues
AtomicReader. getBinaryDocValues(String field)
ReturnsBinaryDocValues
for this field, or null if noBinaryDocValues
were indexed for this field.BinaryDocValues
FilterAtomicReader. getBinaryDocValues(String field)
BinaryDocValues
ParallelAtomicReader. getBinaryDocValues(String field)
BinaryDocValues
SegmentReader. getBinaryDocValues(String 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) -
Uses of BinaryDocValues in org.apache.lucene.search
Methods in org.apache.lucene.search that return BinaryDocValues Modifier and Type Method Description BinaryDocValues
FieldCache. getTerms(AtomicReader reader, String field, boolean setDocsWithField)
Checks the internal cache for an appropriate entry, and if none is found, reads the term values infield
and returns aBinaryDocValues
instance, providing a method to retrieve the term (as a BytesRef) per document.BinaryDocValues
FieldCache. getTerms(AtomicReader reader, String field, boolean setDocsWithField, float acceptableOverheadRatio)
Expert: just likeFieldCache.getTerms(AtomicReader,String,boolean)
, but you can specify whether more RAM should be consumed in exchange for faster lookups (default is "true").
-