aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/grouping/request/RawBucket.java
blob: 852d2d939e72822bc12a45a2348dca1a008a7dd0 (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
// 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 RawValue} bucket in a {@link PredefinedFunction}.
 *
 * @author Ulf Lilleengen
 */
public class RawBucket extends BucketValue {

    /**
     * Get the next distinct value.
     *
     * @param value The base value.
     * @return the next value.
     */
    public static RawValue nextValue(RawValue value) {
        return new RawValue(value.getValue().clone().put((byte)0));
    }

    /**
     * Constructs a new instance of this class.
     *
     * @param from          The from-value to assign to this.
     * @param to            The to-value to assign to this.
     */
    public RawBucket(RawBuffer from, RawBuffer to) {
        super(null, null, new RawValue(from), new RawValue(to));
    }

    /**
     * Constructs a new instance of this class.
     *
     * @param from          The from-value to assign to this.
     * @param to            The to-value to assign to this.
     */
    public RawBucket(ConstantValue<?> from, ConstantValue<?> to) {
        super(null, null, from, to);
    }

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

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

}