Uses of Class
org.apache.lucene.index.BinaryDocValues

Packages that use BinaryDocValues
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
abstract  BinaryDocValues DocValuesProducer.getBinary(FieldInfo field)
          Returns BinaryDocValues for this field.
 

Method parameters in org.apache.lucene.codecs with type arguments of type BinaryDocValues
 void DocValuesConsumer.mergeBinaryField(FieldInfo fieldInfo, MergeState mergeState, List<BinaryDocValues> toMerge, List<Bits> docsWithField)
          Merges the binary docvalues from toMerge.
 

Uses of BinaryDocValues in org.apache.lucene.codecs.lucene45
 

Methods in org.apache.lucene.codecs.lucene45 that return BinaryDocValues
 BinaryDocValues Lucene45DocValuesProducer.getBinary(FieldInfo field)
           
 

Uses of BinaryDocValues in org.apache.lucene.index
 

Subclasses of BinaryDocValues in org.apache.lucene.index
static class MultiDocValues.MultiSortedDocValues
          Implements SortedDocValues over n subs, using an OrdinalMap
 class SortedDocValues
          A per-document byte[] with presorted values.
 

Fields in org.apache.lucene.index declared as BinaryDocValues
static BinaryDocValues BinaryDocValues.EMPTY
          An empty BinaryDocValues which returns BytesRef.EMPTY_BYTES for every document
 

Methods in org.apache.lucene.index that return BinaryDocValues
abstract  BinaryDocValues AtomicReader.getBinaryDocValues(String field)
          Returns BinaryDocValues for this field, or null if no BinaryDocValues were indexed for this field.
 BinaryDocValues SegmentReader.getBinaryDocValues(String field)
           
 BinaryDocValues FilterAtomicReader.getBinaryDocValues(String field)
           
 BinaryDocValues ParallelAtomicReader.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
 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 in field and returns a BinaryDocValues 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 like FieldCache.getTerms(AtomicReader,String,boolean), but you can specify whether more RAM should be consumed in exchange for faster lookups (default is "true").
 



Copyright © 2000-2014 Apache Software Foundation. All Rights Reserved.