Package org.apache.solr.common.params
Interface TermsParams
- 
 public interface TermsParams
- 
- 
Nested Class SummaryNested Classes Modifier and Type Interface Description static classTermsParams.TermsRegexpFlag
 - 
Field SummaryFields Modifier and Type Field Description static StringTERMSThe component name.static StringTERMS_FIELDRequired.static StringTERMS_LIMITOptional.static StringTERMS_LISTOptional.static StringTERMS_LOWEROptional.static StringTERMS_LOWER_INCLUSIVEOptional.static StringTERMS_MAXCOUNTOptional.static StringTERMS_MINCOUNTOptional.static StringTERMS_PREFIXUsed for building up the other termsstatic StringTERMS_PREFIX_STRstatic StringTERMS_RAWOptional.static StringTERMS_REGEXP_FLAGstatic StringTERMS_REGEXP_STRstatic StringTERMS_SORTOptional.static StringTERMS_SORT_COUNTstatic StringTERMS_SORT_INDEXstatic StringTERMS_STATSOptional.static StringTERMS_TTFOptional.static StringTERMS_UPPEROptional.static StringTERMS_UPPER_INCLUSIVEOptional.
 
- 
- 
- 
Field Detail- 
TERMSstatic final String TERMS The component name. Set to true to turn on the TermsComponent- See Also:
- Constant Field Values
 
 - 
TERMS_PREFIXstatic final String TERMS_PREFIX Used for building up the other terms- See Also:
- Constant Field Values
 
 - 
TERMS_FIELDstatic final String TERMS_FIELD Required. Specify the field to look up terms in.- See Also:
- Constant Field Values
 
 - 
TERMS_LISTstatic final String TERMS_LIST Optional. The list of terms to be retrieved.- See Also:
- Constant Field Values
 
 - 
TERMS_STATSstatic final String TERMS_STATS Optional. If true, also returns index-level statistics, such as numDocs.- See Also:
- Constant Field Values
 
 - 
TERMS_TTFstatic final String TERMS_TTF Optional. If true, also returns terms' total term frequency.- See Also:
- Constant Field Values
 
 - 
TERMS_LOWERstatic final String TERMS_LOWER Optional. The lower bound term to start at. The TermEnum will start at the next term after this term in the dictionary.If not specified, the empty string is used - See Also:
- Constant Field Values
 
 - 
TERMS_UPPERstatic final String TERMS_UPPER Optional. The term to stop at.- See Also:
- TERMS_UPPER_INCLUSIVE, Constant Field Values
 
 - 
TERMS_UPPER_INCLUSIVEstatic final String TERMS_UPPER_INCLUSIVE Optional. If true, include the upper bound term in the results. False by default.- See Also:
- Constant Field Values
 
 - 
TERMS_LOWER_INCLUSIVEstatic final String TERMS_LOWER_INCLUSIVE Optional. If true, include the lower bound term in the results, otherwise skip to the next one. True by default.- See Also:
- Constant Field Values
 
 - 
TERMS_LIMITstatic final String TERMS_LIMIT Optional. The number of results to return. If not specified, looks forCommonParams.ROWS. If that's not specified, usesCommonParams.ROWS_DEFAULT.- See Also:
- Constant Field Values
 
 - 
TERMS_PREFIX_STRstatic final String TERMS_PREFIX_STR - See Also:
- Constant Field Values
 
 - 
TERMS_REGEXP_STRstatic final String TERMS_REGEXP_STR - See Also:
- Constant Field Values
 
 - 
TERMS_REGEXP_FLAGstatic final String TERMS_REGEXP_FLAG - See Also:
- Constant Field Values
 
 - 
TERMS_MINCOUNTstatic final String TERMS_MINCOUNT Optional. The minimum value of docFreq to be returned. 1 by default- See Also:
- Constant Field Values
 
 - 
TERMS_MAXCOUNTstatic final String TERMS_MAXCOUNT Optional. The maximum value of docFreq to be returned. -1 by default means no boundary- See Also:
- Constant Field Values
 
 - 
TERMS_RAWstatic final String TERMS_RAW Optional. If true, return the raw characters of the indexed term, regardless of if it is readable. For instance, the index form of numeric numbers is not human-readable. The default is false.- See Also:
- Constant Field Values
 
 - 
TERMS_SORTstatic final String TERMS_SORT Optional. If sorting by frequency is enabled. Defaults to sorting by count.- See Also:
- Constant Field Values
 
 - 
TERMS_SORT_COUNTstatic final String TERMS_SORT_COUNT - See Also:
- Constant Field Values
 
 - 
TERMS_SORT_INDEXstatic final String TERMS_SORT_INDEX - See Also:
- Constant Field Values
 
 
- 
 
-