aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/grouping/request/NowFunction.java
blob: 7026e72667590125772f3f7e91e2ea5160bbb8db (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
// 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;

import java.util.Arrays;
import java.util.Collections;

/**
 * This class represents a now-function in a {@link GroupingExpression}. It evaluates to a long that equals the number
 * of seconds since midnight, January 1, 1970 UTC.
 *
 * @author Simon Thoresen Hult
 * @author bratseth
 */
public class NowFunction extends FunctionNode {

    /**
     * Constructs a new instance of this class.
     */
    public NowFunction() {
        this(null, null);
    }

    private NowFunction(String label, Integer level) {
        super("now", label, level, Collections.emptyList());
    }

    @Override
    public NowFunction copy() {
        return new NowFunction(getLabel(), getLevelOrNull());
    }

}