aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/grouping/result/GroupList.java
blob: 7d3228588d4cce46e2024b732380bc133847fc42 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.grouping.result;

import com.yahoo.search.Result;
import com.yahoo.search.grouping.GroupingRequest;

/**
 * A labeled group list in the grouping result model. It is contained in {@link Group}, and
 * contains one or more {@link Group groups} itself, allowing for a hierarchy of grouping results. Use the {@link
 * GroupingRequest#getResultGroup(Result)} to retrieve grouping results.
 *
 * @author Simon Thoresen Hult
 */
public class GroupList extends AbstractList {

    /**
     * Constructs a new instance of this class.
     *
     * @param label the label to assign to this
     */
    public GroupList(String label) {
        super("grouplist", label);
    }

}