org.influxdb.querybuilder.clauses.SubRelativeTimeClause 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
The newest version!
package org.influxdb.querybuilder.clauses;
import org.influxdb.querybuilder.time.TimeInterval;
public class SubRelativeTimeClause extends RelativeTimeClause {
public SubRelativeTimeClause(final TimeInterval timeInterval) {
super("-", timeInterval);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy