Package | Description |
---|---|
org.apache.lucene.document |
The logical representation of a
Document for indexing and searching. |
Modifier and Type | Field and Description |
---|---|
static Field.Store |
Field.Store.COMPRESS
Store the original field value in the index in a compressed form.
|
static Field.Store |
Field.Store.NO
Do not store the field value in the index.
|
static Field.Store |
Field.Store.YES
Store the original field value in the index.
|
Constructor and Description |
---|
AbstractField(String name,
Field.Store store,
Field.Index index,
Field.TermVector termVector) |
Field(String name,
byte[] value,
Field.Store store)
Create a stored field with binary value.
|
Field(String name,
byte[] value,
int offset,
int length,
Field.Store store)
Create a stored field with binary value.
|
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.