summaryrefslogtreecommitdiffstats
path: root/statistics/src/main/java/com/yahoo/statistics/Axis.java
blob: baec19c8f24d80f55b19c1602971a714bc8d1027 (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
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.statistics;

import java.util.Arrays;


/**
 * A wrapper class for representing a single axis of an n-dimensional
 * histogram.
 *
 * @author  <a href="mailto:steinar@yahoo-inc.com">Steinar Knutsen</a>
 */
class Axis {
    private final double[] limits;
    private final String name;

    Axis(String name, double[] limits) {
        this.limits = Arrays.copyOf(limits, limits.length);
        this.name = name;
    }

    double[] getLimits() {
        return limits;
    }

    String getName() {
        return name;
    }

}