Uses of Class
org.apache.lucene.index.IndexingChain.PerField
-
Packages that use IndexingChain.PerField Package Description org.apache.lucene.index Code to maintain and access indices. -
-
Uses of IndexingChain.PerField in org.apache.lucene.index
Fields in org.apache.lucene.index declared as IndexingChain.PerField Modifier and Type Field Description private IndexingChain.PerField[]
IndexingChain. docFields
private IndexingChain.PerField[]
IndexingChain. fieldHash
private IndexingChain.PerField[]
IndexingChain. fields
(package private) IndexingChain.PerField
IndexingChain.PerField. next
Methods in org.apache.lucene.index that return IndexingChain.PerField Modifier and Type Method Description private IndexingChain.PerField
IndexingChain. getOrAddPerField(java.lang.String fieldName, IndexableFieldType fieldType)
Returns a previously createdIndexingChain.PerField
, absorbing the type information fromFieldType
, and creates a newIndexingChain.PerField
if this field name wasn't seen yet.private IndexingChain.PerField
IndexingChain. getPerField(java.lang.String name)
Returns a previously createdIndexingChain.PerField
, or null if this field name wasn't seen yet.Methods in org.apache.lucene.index with parameters of type IndexingChain.PerField Modifier and Type Method Description int
IndexingChain.PerField. compareTo(IndexingChain.PerField other)
private void
IndexingChain. indexDocValue(int docID, IndexingChain.PerField fp, DocValuesType dvType, IndexableField field)
Called from processDocument to index one field's doc valueprivate void
IndexingChain. initializeFieldInfo(IndexingChain.PerField pf)
private boolean
IndexingChain. processField(int docID, IndexableField field, IndexingChain.PerField pf)
Index each field Returnstrue
, if we are indexing a unique field with postings
-