Package | Description |
---|---|
org.apache.lucene.document |
The Document abstraction.
|
Modifier and Type | Field and Description |
---|---|
static Field.Index |
Field.Index.NO
Do not index the field value.
|
static Field.Index |
Field.Index.NO_NORMS
Index the field's value without an Analyzer, and disable
the storing of norms.
|
static Field.Index |
Field.Index.TOKENIZED
Index the field's value so it can be searched.
|
static Field.Index |
Field.Index.UN_TOKENIZED
Index the field's value without using an Analyzer, so it can be searched.
|
Constructor and Description |
---|
Field(String name,
String value,
Field.Store store,
Field.Index index)
Create a field by specifying its name, value and how it will
be saved in the index.
|
Field(String name,
String value,
Field.Store store,
Field.Index index,
Field.TermVector termVector)
Create a field by specifying its name, value and how it will
be saved in the index.
|
Copyright © 2000-2013 Apache Software Foundation. All Rights Reserved.