List of usage examples for org.apache.solr.common.params SpellingParams SPELLCHECK_MAX_COLLATIONS
String SPELLCHECK_MAX_COLLATIONS
To view the source code for org.apache.solr.common.params SpellingParams SPELLCHECK_MAX_COLLATIONS.
Click Source Link
The maximum number of collations to return.
From source file:org.springframework.data.solr.core.query.SpellcheckOptions.java
License:Apache License
/** * The maximum number of collations to return. * * @param max// w ww.j a va 2 s . co m * @return */ public SpellcheckOptions maxCollations(long max) { return potentiallySetCollate().createNewAndAppend(SpellingParams.SPELLCHECK_MAX_COLLATIONS, max); }
From source file:org.springframework.data.solr.core.query.SpellcheckOptions.java
License:Apache License
/** * @return can be {@literal null}. */ @Nullable public Long getMaxCollations() { return (Long) params.get(SpellingParams.SPELLCHECK_MAX_COLLATIONS); }