Package | Description |
---|---|
org.apache.lucene.codecs |
Codecs API: API for customization of the encoding and structure of the index.
|
org.apache.lucene.document |
The logical representation of a
Document for indexing and searching. |
org.apache.lucene.index |
Code to maintain and access indices.
|
Modifier and Type | Field and Description |
---|---|
protected IndexOptions |
PushPostingsWriterBase.indexOptions
IndexOptions of current field being
written |
Modifier and Type | Method and Description |
---|---|
IndexOptions |
FieldType.indexOptions()
IndexOptions , describing what should be
recorded into the inverted index |
Modifier and Type | Method and Description |
---|---|
void |
FieldType.setIndexOptions(IndexOptions value)
Sets the indexing options for the field:
|
Modifier and Type | Method and Description |
---|---|
IndexOptions |
FieldInfo.getIndexOptions()
Returns IndexOptions for the field, or IndexOptions.NONE if the field is not indexed
|
IndexOptions |
IndexableFieldType.indexOptions()
IndexOptions , describing what should be
recorded into the inverted index |
static IndexOptions |
IndexOptions.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndexOptions[] |
IndexOptions.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
void |
FieldInfo.setIndexOptions(IndexOptions newIndexOptions)
Record the
IndexOptions to use with this field. |
Constructor and Description |
---|
FieldInfo(String name,
int number,
boolean storeTermVector,
boolean omitNorms,
boolean storePayloads,
IndexOptions indexOptions,
DocValuesType docValues,
long dvGen,
Map<String,String> attributes,
int pointDimensionCount,
int pointNumBytes)
Sole constructor.
|
Copyright © 2000-2018 Apache Software Foundation. All Rights Reserved.