Package | Description |
---|---|
org.apache.lucene.index |
Code to maintain and access indices.
|
Modifier and Type | Field and Description |
---|---|
static IndexReader.FieldOption |
IndexReader.FieldOption.ALL
All fields
|
static IndexReader.FieldOption |
IndexReader.FieldOption.INDEXED
All indexed fields
|
static IndexReader.FieldOption |
IndexReader.FieldOption.INDEXED_NO_TERMVECTOR
All fields which are indexed but don't have termvectors enabled
|
static IndexReader.FieldOption |
IndexReader.FieldOption.INDEXED_WITH_TERMVECTOR
All fields which are indexed with termvectors enabled
|
static IndexReader.FieldOption |
IndexReader.FieldOption.OMIT_TERM_FREQ_AND_POSITIONS
All fields that omit tf
|
static IndexReader.FieldOption |
IndexReader.FieldOption.OMIT_TF
Deprecated.
Renamed to
OMIT_TERM_FREQ_AND_POSITIONS |
static IndexReader.FieldOption |
IndexReader.FieldOption.STORES_PAYLOADS
All fields that store payloads
|
static IndexReader.FieldOption |
IndexReader.FieldOption.TERMVECTOR
All fields with termvectors enabled.
|
static IndexReader.FieldOption |
IndexReader.FieldOption.TERMVECTOR_WITH_OFFSET
All fields with termvectors with offset values enabled
|
static IndexReader.FieldOption |
IndexReader.FieldOption.TERMVECTOR_WITH_POSITION
All fields with termvectors with position values enabled
|
static IndexReader.FieldOption |
IndexReader.FieldOption.TERMVECTOR_WITH_POSITION_OFFSET
All fields with termvectors with offset values and position values enabled
|
static IndexReader.FieldOption |
IndexReader.FieldOption.UNINDEXED
All fields which are not indexed
|
Modifier and Type | Method and Description |
---|---|
java.util.Collection |
ParallelReader.getFieldNames(IndexReader.FieldOption fieldNames) |
abstract java.util.Collection |
IndexReader.getFieldNames(IndexReader.FieldOption fldOption)
Get a list of unique field names that exist in this index and have the specified
field option information.
|
java.util.Collection |
SegmentReader.getFieldNames(IndexReader.FieldOption fieldOption) |
java.util.Collection |
FilterIndexReader.getFieldNames(IndexReader.FieldOption fieldNames) |
java.util.Collection |
MultiReader.getFieldNames(IndexReader.FieldOption fieldNames) |
Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.