All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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 - 2024 Weber Informatics LLC | Privacy Policy