org.influxdb.querybuilder.SubQuery 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 abstract class SubQuery implements QueryStringBuilder {
private T parent;
void setParent(final T parent) {
this.parent = parent;
}
T getParent() {
return parent;
}
T close() {
parent.setSubQuery(this);
return parent;
}
}