org.influxdb.querybuilder.Where 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;
import java.util.List;
import org.influxdb.querybuilder.clauses.Clause;
import org.influxdb.querybuilder.clauses.ConjunctionClause;
public interface Where {
T and(final Clause clause);
T or(final Clause clause);
List getClauses();
WhereNested andNested();
WhereNested orNested();
T orderBy(final Ordering orderings);
T groupBy(final Object... columns);
T limit(final int limit);
T limit(final int limit, final long offSet);
}