Uses of Class
org.apache.lucene.index.TermVectorOffsetInfo
-
Packages that use TermVectorOffsetInfo Package Description org.apache.lucene.index Code to maintain and access indices. -
-
Uses of TermVectorOffsetInfo in org.apache.lucene.index
Fields in org.apache.lucene.index declared as TermVectorOffsetInfo Modifier and Type Field Description static TermVectorOffsetInfo[]
TermVectorOffsetInfo. EMPTY_OFFSET_INFO
Convenience declaration when creating aTermPositionVector
that stores only position information.Methods in org.apache.lucene.index that return TermVectorOffsetInfo Modifier and Type Method Description TermVectorOffsetInfo[]
TermPositionVector. getOffsets(int index)
Returns an array of TermVectorOffsetInfo in which the term is found.TermVectorOffsetInfo[]
TermVectorEntry. getOffsets()
Methods in org.apache.lucene.index that return types with arguments of type TermVectorOffsetInfo Modifier and Type Method Description List<TermVectorOffsetInfo>
PositionBasedTermVectorMapper.TVPositionInfo. getOffsets()
Parallel list (toPositionBasedTermVectorMapper.TVPositionInfo.getTerms()
) of TermVectorOffsetInfo objects.Methods in org.apache.lucene.index with parameters of type TermVectorOffsetInfo Modifier and Type Method Description void
FieldSortedTermVectorMapper. map(String term, int frequency, TermVectorOffsetInfo[] offsets, int[] positions)
void
PositionBasedTermVectorMapper. map(String term, int frequency, TermVectorOffsetInfo[] offsets, int[] positions)
Callback for the TermVectorReader.void
SortedTermVectorMapper. map(String term, int frequency, TermVectorOffsetInfo[] offsets, int[] positions)
abstract void
TermVectorMapper. map(String term, int frequency, TermVectorOffsetInfo[] offsets, int[] positions)
Map the Term Vector information into your own structureConstructors in org.apache.lucene.index with parameters of type TermVectorOffsetInfo Constructor Description TermVectorEntry(String field, String term, int frequency, TermVectorOffsetInfo[] offsets, int[] positions)
-