org.influxdb.querybuilder.clauses.AndConjunction 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 class AndConjunction extends ConjunctionClause {
private static final String AND = "AND";
public AndConjunction(final Clause clause) {
super(clause);
}
@Override
public void join(final StringBuilder stringBuilder) {
stringBuilder.append(" ").append(AND).append(" ");
}
}