Home | History | Annotate | Download | only in text

Lines Matching defs:maxLabelCount

417      * @return maxLabelCount maximum number of labels.
421 return maxLabelCount;
428 * @param maxLabelCount Set the maximum number of labels. Currently, if the number is exceeded, then every
434 public AlphabeticIndex<V> setMaxLabelCount(int maxLabelCount) {
435 this.maxLabelCount = maxLabelCount;
488 // if the result is still too large, cut down to maxLabelCount elements, by removing every nth element
491 if (size > maxLabelCount) {
497 final int bump = count * maxLabelCount / size;
821 private int maxLabelCount = 99;