|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Field.TermVector | |
org.apache.lucene.document | The Document abstraction. |
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.YES
Store the term vectors of each document. |
static Field.TermVector |
Field.TermVector.WITH_POSITIONS
Store the term vector + token position information |
static Field.TermVector |
Field.TermVector.WITH_OFFSETS
Store the term vector + Token offset information |
static Field.TermVector |
Field.TermVector.WITH_POSITIONS_OFFSETS
Store the term vector + Token position and offset information |
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,
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,
Reader reader,
Field.TermVector termVector)
Create a tokenized and indexed field that is not stored, optionally with storing term vectors. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |