Package org.apache.solr.common.params
Interface TermsParams
public interface TermsParams
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe component name.static final StringRequired.static final StringOptional.static final StringOptional.static final StringOptional.static final StringOptional.static final StringOptional.static final StringOptional.static final StringUsed for building up the other termsstatic final Stringstatic final StringOptional.static final Stringstatic final Stringstatic final StringOptional.static final Stringstatic final Stringstatic final StringOptional.static final StringOptional.static final StringOptional.static final StringOptional.
-
Field Details
-
TERMS
The component name. Set to true to turn on the TermsComponent- See Also:
-
TERMS_PREFIX
Used for building up the other terms- See Also:
-
TERMS_FIELD
Required. Specify the field to look up terms in.- See Also:
-
TERMS_LIST
Optional. The list of terms to be retrieved.- See Also:
-
TERMS_STATS
Optional. If true, also returns index-level statistics, such as numDocs.- See Also:
-
TERMS_TTF
Optional. If true, also returns terms' total term frequency.- See Also:
-
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:
-
TERMS_UPPER
Optional. The term to stop at.- See Also:
-
TERMS_UPPER_INCLUSIVE
Optional. If true, include the upper bound term in the results. False by default.- See Also:
-
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:
-
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:
-
TERMS_PREFIX_STR
- See Also:
-
TERMS_REGEXP_STR
- See Also:
-
TERMS_REGEXP_FLAG
- See Also:
-
TERMS_MINCOUNT
Optional. The minimum value of docFreq to be returned. 1 by default- See Also:
-
TERMS_MAXCOUNT
Optional. The maximum value of docFreq to be returned. -1 by default means no boundary- See Also:
-
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:
-
TERMS_SORT
Optional. If sorting by frequency is enabled. Defaults to sorting by count.- See Also:
-
TERMS_SORT_COUNT
- See Also:
-
TERMS_SORT_INDEX
- See Also:
-