summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/grouping/request/NowFunction.java
blob: f876ee9a1df402d86eba5174f6a74ce538b11789 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2016 Yahoo Inc. 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.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 <a href="mailto:simon@yahoo-inc.com">Simon Thoresen</a>
 */
public class NowFunction extends FunctionNode {

    /**
     * Constructs a new instance of this class.
     */
    public NowFunction() {
        super("now", Collections.<GroupingExpression>emptyList());
    }
}