All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ringcentral.platform.metrics.scale.Scale Maven / Gradle / Ivy

package com.ringcentral.platform.metrics.scale;

import java.util.List;

public interface Scale {
    default long point(int i) {
        return points().get(i);
    }

    default long firstPoint() {
        return points().get(0);
    }

    default int pointCount() {
        return points().size();
    }

    List points();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy