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

net.quasardb.qdb.jni.qdb_ts_double_point Maven / Gradle / Ivy

Go to download

API for the JNI components of the QuasarDB API for Java. Should not be included directly.

There is a newer version: 3.14.1
Show newest version
package net.quasardb.qdb.jni;

import net.quasardb.qdb.ts.Timespec;

public final class qdb_ts_double_point {
  protected Timespec timestamp;
  protected double value;

  public qdb_ts_double_point(){
    this.value = -1.0;
  }

  public qdb_ts_double_point(Timespec timestamp, double value){
    this.timestamp = timestamp;
    this.value = value;
  }

  public Timespec getTimestamp() {
    return this.timestamp;
  }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy