Home | History | Annotate | Download | only in text

Lines Matching defs:maxLabelCount

413      * @return maxLabelCount maximum number of labels.
417 return maxLabelCount;
424 * @param maxLabelCount Set the maximum number of labels. Currently, if the number is exceeded, then every
430 public AlphabeticIndex<V> setMaxLabelCount(int maxLabelCount) {
431 this.maxLabelCount = maxLabelCount;
484 // if the result is still too large, cut down to maxLabelCount elements, by removing every nth element
487 if (size > maxLabelCount) {
493 final int bump = count * maxLabelCount / size;
815 private int maxLabelCount = 99;