|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Field.TermVector | |
---|---|
org.apache.lucene.document | The Document abstraction. |
org.apache.lucene.index | Code to maintain and access indices. |
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. |
Constructors in org.apache.lucene.document with parameters of type Field.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. |
Uses of Field.TermVector in org.apache.lucene.index |
---|
Methods in org.apache.lucene.index with parameters of type Field.TermVector | |
---|---|
Collection |
MultiReader.getIndexedFieldNames(Field.TermVector tvSpec)
|
Collection |
ParallelReader.getIndexedFieldNames(Field.TermVector tvSpec)
|
Collection |
FilterIndexReader.getIndexedFieldNames(Field.TermVector tvSpec)
|
abstract Collection |
IndexReader.getIndexedFieldNames(Field.TermVector tvSpec)
Deprecated. Replaced by IndexReader.getFieldNames(IndexReader.FieldOption) |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |