net.quasardb.qdb.jni.qdb_ts_double_point Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jni Show documentation
Show all versions of jni Show documentation
API for the JNI components of the QuasarDB API for Java. Should not be included directly.
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;
}
}