![JAR search and dependency download from the Maven repository](/logo.png)
org.influxdb.querybuilder.Where Maven / Gradle / Ivy
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);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy