org.influxdb.querybuilder.clauses.ConjunctionClause 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.clauses;
public abstract class ConjunctionClause implements Conjunction, Clause {
private Clause clause;
public ConjunctionClause(final Clause clause) {
this.clause = clause;
}
@Override
public void appendTo(final StringBuilder stringBuilder) {
clause.appendTo(stringBuilder);
}
}