Uses of Class
org.apache.lucene.document.Field.TermVector
-
Packages that use Field.TermVector Package Description org.apache.lucene.benchmark.byTask.feeds Sources for benchmark inputs: documents and queries.org.apache.lucene.document The logical representation of aDocument
for indexing and searching.org.apache.lucene.util Some utility classes. -
-
Uses of Field.TermVector in org.apache.lucene.benchmark.byTask.feeds
Fields in org.apache.lucene.benchmark.byTask.feeds declared as Field.TermVector Modifier and Type Field Description protected Field.TermVector
DocMaker. termVecVal
-
Uses of Field.TermVector in org.apache.lucene.document
Methods in org.apache.lucene.document that return Field.TermVector Modifier and Type Method Description static Field.TermVector
Field.TermVector. toTermVector(boolean stored, boolean withOffsets, boolean withPositions)
Get the best representation of a TermVector given the flags.static Field.TermVector
Field.TermVector. valueOf(String name)
Returns the enum constant of this type with the specified name.static Field.TermVector[]
Field.TermVector. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.lucene.document with parameters of type Field.TermVector Modifier and Type Method Description protected void
AbstractField. setStoreTermVector(Field.TermVector termVector)
Constructors in org.apache.lucene.document with parameters of type Field.TermVector Constructor Description AbstractField(String name, Field.Store store, Field.Index index, Field.TermVector termVector)
Field(String name, boolean internName, 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.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. -
Uses of Field.TermVector in org.apache.lucene.util
Methods in org.apache.lucene.util with parameters of type Field.TermVector Modifier and Type Method Description static Field
LuceneTestCase. newField(String name, String value, Field.Store store, Field.Index index, Field.TermVector tv)
Returns a new Field instance.static Field
LuceneTestCase. newField(Random random, String name, String value, Field.Store store, Field.Index index, Field.TermVector tv)
Returns a new field instance, using the specified random.
-