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 BinaryDocValuesDocValuesProducer. getBinary(FieldInfo field)ReturnsBinaryDocValuesfor this field.Method parameters in org.apache.lucene.codecs with type arguments of type BinaryDocValues Modifier and Type Method Description voidDocValuesConsumer. 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 BinaryDocValuesLucene45DocValuesProducer. 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 classMultiDocValues.MultiSortedDocValuesImplements SortedDocValues over n subs, using an OrdinalMapclassSortedDocValuesA per-document byte[] with presorted values.Fields in org.apache.lucene.index declared as BinaryDocValues Modifier and Type Field Description static BinaryDocValuesBinaryDocValues. EMPTYAn empty BinaryDocValues which returnsBytesRef.EMPTY_BYTESfor every documentMethods in org.apache.lucene.index that return BinaryDocValues Modifier and Type Method Description abstract BinaryDocValuesAtomicReader. getBinaryDocValues(String field)ReturnsBinaryDocValuesfor this field, or null if noBinaryDocValueswere indexed for this field.BinaryDocValuesFilterAtomicReader. getBinaryDocValues(String field)BinaryDocValuesParallelAtomicReader. getBinaryDocValues(String field)BinaryDocValuesSegmentReader. getBinaryDocValues(String field)BinaryDocValuesSlowCompositeReaderWrapper. getBinaryDocValues(String field)static BinaryDocValuesMultiDocValues. 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 BinaryDocValuesFieldCache. getTerms(AtomicReader reader, String field, boolean setDocsWithField)Checks the internal cache for an appropriate entry, and if none is found, reads the term values infieldand returns aBinaryDocValuesinstance, providing a method to retrieve the term (as a BytesRef) per document.BinaryDocValuesFieldCache. 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").
-