Package org.apache.solr.common.params
Interface TermVectorParams
-
public interface TermVectorParams
-
-
Field Summary
Fields Modifier and Type Field Description static String
ALL
Return all the options: TF, positions, offsets, idfstatic String
DF
Return IDF information.static String
DOC_IDS
The Doc Ids (Lucene internal ids) of the docs to get the term vectors forstatic String
FIELDS
The fields to get term vectors forstatic String
OFFSETS
Return offset information, if availablestatic String
PAYLOADS
Return Term Vector payloads informationstatic String
POSITIONS
Return Term Vector position informationstatic String
TF
Return Term Frequency infostatic String
TF_IDF
Return TF-IDF calculation, i.e.static String
TV_PREFIX
-
-
-
Field Detail
-
TV_PREFIX
static final String TV_PREFIX
- See Also:
- Constant Field Values
-
TF
static final String TF
Return Term Frequency info- See Also:
- Constant Field Values
-
POSITIONS
static final String POSITIONS
Return Term Vector position information- See Also:
- Constant Field Values
-
PAYLOADS
static final String PAYLOADS
Return Term Vector payloads information- See Also:
- Constant Field Values
-
OFFSETS
static final String OFFSETS
Return offset information, if available- See Also:
- Constant Field Values
-
DF
static final String DF
Return IDF information. May be expensive- See Also:
- Constant Field Values
-
TF_IDF
static final String TF_IDF
Return TF-IDF calculation, i.e. (tf / idf). May be expensive.- See Also:
- Constant Field Values
-
ALL
static final String ALL
Return all the options: TF, positions, offsets, idf- See Also:
- Constant Field Values
-
FIELDS
static final String FIELDS
The fields to get term vectors for- See Also:
- Constant Field Values
-
DOC_IDS
static final String DOC_IDS
The Doc Ids (Lucene internal ids) of the docs to get the term vectors for- See Also:
- Constant Field Values
-
-