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

net.quasardb.qdb.jni.qdb_ts_string_aggregation 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.TimeRange;

public final class qdb_ts_string_aggregation {
  protected long aggregation_type;
  protected TimeRange time_range;

  protected long count;
  protected qdb_ts_string_point result;

  public qdb_ts_string_aggregation(TimeRange time_range, long aggregation_type) {
    this.time_range = time_range;
    this.aggregation_type = aggregation_type;
    this.count = -1;
  }

  public qdb_ts_string_aggregation(TimeRange time_range, long aggregation_type, long count, qdb_ts_string_point result) {
    this.time_range = time_range;
    this.aggregation_type = aggregation_type;
    this.count = count;
    this.result = result;
  }

  public TimeRange getTimeRange() {
    return this.time_range;
  }

  public long getAggregationType() {
    return this.aggregation_type;
  }

  public long getCount() {
    return this.count;
  }

  public qdb_ts_string_point getResult() {
    return this.result;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy