org.influxdb.querybuilder.Aggregations Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of influxdb-java Show documentation
Show all versions of influxdb-java Show documentation
Java API to access the InfluxDB REST API
package org.influxdb.querybuilder;
public final class Aggregations {
private Aggregations() {
}
public static final String COUNT = "COUNT";
public static final String MAX = "MAX";
public static final String MIN = "MIN";
public static final String SUM = "SUM";
public static final String MEAN = "MEAN";
}