|
||||||||||
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(java.lang.String name,
java.io.Reader reader,
Field.TermVector termVector)
Create a tokenized and indexed field that is not stored, optionally with storing term vectors. |
|
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. |
Uses of Field.TermVector in org.apache.lucene.index |
---|
Methods in org.apache.lucene.index with parameters of type Field.TermVector | |
---|---|
java.util.Collection |
FilterIndexReader.getIndexedFieldNames(Field.TermVector tvSpec)
|
abstract java.util.Collection |
IndexReader.getIndexedFieldNames(Field.TermVector tvSpec)
Deprecated. Replaced by IndexReader.getFieldNames(IndexReader.FieldOption) |
java.util.Collection |
MultiReader.getIndexedFieldNames(Field.TermVector tvSpec)
|
java.util.Collection |
ParallelReader.getIndexedFieldNames(Field.TermVector tvSpec)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |