aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/grouping/request/StringBucket.java
blob: 96aaa39a4c86c9e98428029973c70019824cab9e (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.grouping.request;

/**
 * This class represents a {@link String} bucket in a {@link PredefinedFunction}.
 *
 * @author Simon Thoresen Hult
 */
public class StringBucket extends BucketValue {

    /** Returns the next distinct value after the given value */
    public static StringValue nextValue(StringValue value) {
        return new StringValue(value.getValue() + " ");
    }

    /** Constructs a new bucket for a single unique string */
    public StringBucket(String value) {
        this(new StringValue(value));
    }

    /** Constructs a new bucket for a single unique string */
    public StringBucket(StringValue value) {
        this(value, nextValue(value));
    }

    /**
     * Constructs a new bucket for a range of strings.
     *
     * @param from the start of the bucket, inclusive
     * @param to the end of the bucket, exclusive
     */
    public StringBucket(String from, String to) {
        this(from, to, false);
    }

    /**
     * Constructs a new bucket for a range of strings.
     *
     * @param from the start of the bucket, inclusive
     * @param to the end of the bucket
     * @param toInclusive whether <code>to</code> value should be included in the bucket
     */
    public StringBucket(String from, String to, boolean toInclusive) {
        super(null,
              null,
              new StringValue(from),
              toInclusive ? nextValue(new StringValue(to)) : new StringValue(to));
    }

    /**
     * Constructs a new bucket for a range of strings.
     *
     * @param from the start of the bucket, inclusive
     * @param to the end of the bucket, exclusive
     */
    public StringBucket(ConstantValue<?> from, ConstantValue<?> to) {
        super(null, null, from, to);
    }

    private StringBucket(String label, Integer level, ConstantValue<?> from, ConstantValue<?> to) {
        super(label, level, from, to);
    }

    @Override
    public StringBucket copy() {
        return new StringBucket(getLabel(), getLevelOrNull(), getFrom().copy(), getTo().copy());
    }

}