| org.compass.annotations.TermVector
TermVector | public enum TermVector (Code) | | Specifies whether and how a meta-data property should have term vectors.
author: kimchy |
NA | Enum Constant NA(Code) | | Not applicable. Where possible, will use a global setting for this.
|
NO | Enum Constant NO(Code) | | Do not store term vectors.
|
WITH_OFFSETS | Enum Constant WITH_OFFSETS(Code) | | Store the term vector + Token offset information
See Also: TermVector.YES |
WITH_POSITIONS | Enum Constant WITH_POSITIONS(Code) | | Store the term vector + token position information
See Also: TermVector.YES |
YES | Enum Constant YES(Code) | | Store the term vectors of each document. A term vector is a list of
the document's terms and their number of occurences in that document.
|
|
|