aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/grouping/request/MathPowFunction.java
blob: 0ddbbd0651160721e50c5c58cfe44ff813602f3e (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
// Copyright Yahoo. 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;

/**
 * @author baldersheim
 * @author bratseth
 */
public class MathPowFunction extends FunctionNode {

    /**
     * Constructs a new instance of this class.
     *
     * @param x The expression to evaluate for base, double value will be requested.
     * @param y The expression to evaluate for the exponent, double value will be requested.
     */
    public MathPowFunction(GroupingExpression x, GroupingExpression y) {
        this(null, null, x, y);
    }

    private MathPowFunction(String label, Integer level, GroupingExpression x, GroupingExpression y) {
        super("math.pow", label, level, Arrays.asList(x, y));
    }

    @Override
    public MathPowFunction copy() {
        return new MathPowFunction(getLabel(),
                                   getLevelOrNull(),
                                   getArg(0).copy(),
                                   getArg(1).copy());
    }

}