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

public class Aggregator {

    private final String type;
    private final Object value;

    Aggregator(String type) {
        this(type, "");
    }

    Aggregator(String type, Object value) {
        this.type = type;
        this.value = value;
    }

    @Override
    public String toString() {
        return Text.format("%s(%s)", type, value);
    }

}