Package | Description |
---|---|
org.apache.lucene.benchmark.byTask.feeds |
Sources for benchmark inputs: documents and queries.
|
org.apache.lucene.document |
The logical representation of a
Document for indexing and searching. |
Modifier and Type | Field and Description |
---|---|
protected Field.Index |
DocMaker.bodyIndexVal |
protected Field.Index |
DocMaker.indexVal |
Modifier and Type | Field and Description |
---|---|
static Field.Index |
Field.Index.ANALYZED
Index the tokens produced by running the field's
value through an Analyzer.
|
static Field.Index |
Field.Index.ANALYZED_NO_NORMS
Expert: Index the tokens produced by running the
field's value through an Analyzer, and also
separately disable the storing of norms.
|
static Field.Index |
Field.Index.NO
Do not index the field value.
|
static Field.Index |
Field.Index.NO_NORMS
Deprecated.
This has been renamed to
NOT_ANALYZED_NO_NORMS |
static Field.Index |
Field.Index.NOT_ANALYZED
Index the field's value without using an Analyzer, so it can be searched.
|
static Field.Index |
Field.Index.NOT_ANALYZED_NO_NORMS
Expert: Index the field's value without an Analyzer,
and also disable the storing of norms.
|
static Field.Index |
Field.Index.TOKENIZED
Deprecated.
this has been renamed to
ANALYZED |
static Field.Index |
Field.Index.UN_TOKENIZED
Deprecated.
This has been renamed to
NOT_ANALYZED |
Constructor and Description |
---|
AbstractField(java.lang.String name,
Field.Store store,
Field.Index index,
Field.TermVector termVector) |
Field(java.lang.String name,
boolean internName,
java.lang.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.
|
Field(java.lang.String name,
java.lang.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(java.lang.String name,
java.lang.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-2016 Apache Software Foundation. All Rights Reserved.