Uses of Class
org.apache.lucene.index.Fields
-
Packages that use Fields Package Description org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.codecs.compressing StoredFieldsFormat that allows cross-document and cross-field compression of stored fields.org.apache.lucene.codecs.lucene40 Lucene 4.0 file format.org.apache.lucene.index Code to maintain and access indices. -
-
Uses of Fields in org.apache.lucene.codecs
Subclasses of Fields in org.apache.lucene.codecs Modifier and Type Class Description classBlockTreeTermsReaderA block-based terms index and dictionary that assigns terms to variable length blocks according to how they share prefixes.classFieldsProducerAbstract API that produces terms, doc, freq, prox, offset and payloads postings.Methods in org.apache.lucene.codecs that return Fields Modifier and Type Method Description abstract FieldsTermVectorsReader. get(int doc)Returns term vectors for this document, or null if term vectors were not indexed.Methods in org.apache.lucene.codecs with parameters of type Fields Modifier and Type Method Description protected voidTermVectorsWriter. addAllDocVectors(Fields vectors, MergeState mergeState)Safe (but, slowish) default method to write every vector field in the document.voidFieldsConsumer. merge(MergeState mergeState, Fields fields)Called during merging to merge allFieldsfrom sub-readers. -
Uses of Fields in org.apache.lucene.codecs.compressing
Methods in org.apache.lucene.codecs.compressing that return Fields Modifier and Type Method Description FieldsCompressingTermVectorsReader. get(int doc) -
Uses of Fields in org.apache.lucene.codecs.lucene40
Methods in org.apache.lucene.codecs.lucene40 that return Fields Modifier and Type Method Description FieldsLucene40TermVectorsReader. get(int docID) -
Uses of Fields in org.apache.lucene.index
Subclasses of Fields in org.apache.lucene.index Modifier and Type Class Description static classFilterAtomicReader.FilterFieldsBase class for filteringFieldsimplementations.classMultiFieldsExposes flex API, merged from flex API of sub-segments.Fields in org.apache.lucene.index declared as Fields Modifier and Type Field Description static Fields[]Fields. EMPTY_ARRAYZero-lengthFieldsarray.protected FieldsFilterAtomicReader.FilterFields. inThe underlying Fields instance.Methods in org.apache.lucene.index that return Fields Modifier and Type Method Description abstract FieldsAtomicReader. fields()ReturnsFieldsfor this reader.FieldsFilterAtomicReader. fields()FieldsParallelAtomicReader. fields()FieldsSegmentReader. fields()FieldsSlowCompositeReaderWrapper. fields()static FieldsMultiFields. getFields(IndexReader reader)Returns a singleFieldsinstance for this reader, merging fields/terms/docs/positions on the fly.FieldsBaseCompositeReader. getTermVectors(int docID)FieldsFilterAtomicReader. getTermVectors(int docID)abstract FieldsIndexReader. getTermVectors(int docID)Retrieve term vectors for this document, or null if term vectors were not indexed.FieldsParallelAtomicReader. getTermVectors(int docID)FieldsSegmentReader. getTermVectors(int docID)FieldsSlowCompositeReaderWrapper. getTermVectors(int docID)Constructors in org.apache.lucene.index with parameters of type Fields Constructor Description FilterFields(Fields in)Creates a new FilterFields.MultiFields(Fields[] subs, ReaderSlice[] subSlices)Expert: construct a new MultiFields instance directly.
-