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

eu.hansolo.steelseries.tools.DataPoint Maven / Gradle / Ivy

package eu.hansolo.steelseries.tools;

/**
 *
 * @author Gerrit Grunwald 
 */
public class DataPoint {

    private final long TIMESTAMP;
    private final double VALUE;

    public DataPoint(final long TIMESTAMP, final double VALUE) {
        this.TIMESTAMP = TIMESTAMP;
        this.VALUE = VALUE;
    }

    public long getTimeStamp() {
        return this.TIMESTAMP;
    }

    public double getValue() {
        return this.VALUE;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy