fix more broken links

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1328982 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2012-04-22 21:34:12 +00:00
parent 36bc3d70bb
commit 76d521cfc7
4 changed files with 13 additions and 4 deletions

View File

@ -456,7 +456,7 @@ public class GroupingSearch {
* This prevents growing data structures many times. This can improve the performance of the grouping at the cost of
* more initial RAM.
* <p/>
* The {@link #allGroups} and {@link #allGroupHeads} features use this option.
* The {@link #setAllGroups} and {@link #setAllGroupHeads} features use this option.
* Defaults to 128.
*
* @param initialSize The initial size of some internal used data structures

View File

@ -116,7 +116,10 @@ public class FunctionAllGroupHeadsCollector extends AbstractAllGroupHeadsCollect
}
}
class GroupHead extends AbstractAllGroupHeadsCollector.GroupHead<MutableValue> {
/** Holds current head document for a single group.
*
* @lucene.experimental */
public class GroupHead extends AbstractAllGroupHeadsCollector.GroupHead<MutableValue> {
final FieldComparator<?>[] comparators;

View File

@ -76,7 +76,10 @@ public class FunctionDistinctValuesCollector extends AbstractDistinctValuesColle
countMval = countFiller.getValue();
}
static class GroupCount extends AbstractDistinctValuesCollector.GroupCount<MutableValue> {
/** Holds distinct values for a single group.
*
* @lucene.experimental */
public static class GroupCount extends AbstractDistinctValuesCollector.GroupCount<MutableValue> {
GroupCount(MutableValue groupValue) {
super(groupValue);

View File

@ -124,7 +124,10 @@ public class TermDistinctValuesCollector extends AbstractDistinctValuesCollector
}
}
static class GroupCount extends AbstractDistinctValuesCollector.GroupCount<BytesRef> {
/** Holds distinct values for a single group.
*
* @lucene.experimental */
public static class GroupCount extends AbstractDistinctValuesCollector.GroupCount<BytesRef> {
int[] ords;