aboutsummaryrefslogtreecommitdiffstats
path: root/client/src/main/java/ai/vespa/client/dsl/Group.java
blob: 840f26a3487b480fe32e7d13d7af1ea03fdee174 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package ai.vespa.client.dsl;

import java.util.Objects;
import java.util.stream.Collectors;
import java.util.stream.Stream;

public class Group implements IGroup, IGroupOperation {

    private final String type;
    private final IGroupOperation[] operations;

    Group(String type, IGroupOperation[] operations) {
        this.type = type;
        this.operations = operations;
    }

    @Override
    public String toString() {
        return Text.format("%s(%s)",
                             type,
                             Stream.of(operations).map(Objects::toString).collect(Collectors.joining(" ")));
    }
}