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

com.github.fridujo.automocker.api.metrics.Point Maven / Gradle / Ivy

The newest version!
package com.github.fridujo.automocker.api.metrics;

public class Point {
    static final Point NEUTRAl_ELEMENT = new Point(0, 0);
    final long timestamp;
    final double value;

    Point(long timestamp, double value) {
        this.timestamp = timestamp;
        this.value = value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy