|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Field.TermVector | |
---|---|
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. |
Uses of Field.TermVector in org.apache.lucene.benchmark.byTask.feeds |
---|
Fields in org.apache.lucene.benchmark.byTask.feeds declared as Field.TermVector | |
---|---|
protected Field.TermVector |
BasicDocMaker.termVecVal
|
Uses of Field.TermVector in org.apache.lucene.document |
---|
Fields in org.apache.lucene.document declared as Field.TermVector | |
---|---|
static Field.TermVector |
Field.TermVector.NO
Do not store term vectors. |
static Field.TermVector |
Field.TermVector.WITH_OFFSETS
Store the term vector + Token offset information |
static Field.TermVector |
Field.TermVector.WITH_POSITIONS
Store the term vector + token position information |
static Field.TermVector |
Field.TermVector.WITH_POSITIONS_OFFSETS
Store the term vector + Token position and offset information |
static Field.TermVector |
Field.TermVector.YES
Store the term vectors of each document. |
Methods in org.apache.lucene.document with parameters of type Field.TermVector | |
---|---|
protected void |
AbstractField.setStoreTermVector(Field.TermVector termVector)
|
Constructors in org.apache.lucene.document with parameters of type Field.TermVector | |
---|---|
AbstractField(String name,
Field.Store store,
Field.Index index,
Field.TermVector termVector)
|
|
Field(String name,
Reader reader,
Field.TermVector termVector)
Create a tokenized and indexed field that is not stored, optionally with storing term vectors. |
|
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. |
|
Field(String name,
TokenStream tokenStream,
Field.TermVector termVector)
Create a tokenized and indexed field that is not stored, optionally with storing term vectors. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |