Uses of Class
com.datastax.driver.core.querybuilder.Clause

Packages that use Clause
com.datastax.driver.core.querybuilder A CQL3 query builder. 
 

Uses of Clause in com.datastax.driver.core.querybuilder
 

Methods in com.datastax.driver.core.querybuilder that return Clause
static Clause QueryBuilder.eq(String name, Object value)
          Creates an "equal" where clause stating the provided column must be equal to the provided value.
static Clause QueryBuilder.gt(String name, Object value)
          Creates a "greater than" where clause stating the provided column must be greater to the provided value.
static Clause QueryBuilder.gte(String name, Object value)
          Creates a "greater than or equal" where clause stating the provided column must be greater than or equal to the provided value.
static Clause QueryBuilder.in(String name, Object... values)
          Create an "in" where clause stating the provided column must be equal to one of the provided values.
static Clause QueryBuilder.lt(String name, Object value)
          Creates a "lesser than" where clause stating the provided column must be less than the provided value.
static Clause QueryBuilder.lte(String name, Object value)
          Creates a "lesser than or equal" where clause stating the provided column must be lesser than or equal to the provided value.
 

Methods in com.datastax.driver.core.querybuilder with parameters of type Clause
 Delete.Where Delete.Where.and(Clause clause)
          Adds the provided clause to this WHERE clause.
 Update.Where Update.Where.and(Clause clause)
          Adds the provided clause to this WHERE clause.
 Update.Conditions Update.Conditions.and(Clause condition)
          Adds the provided condition for the update.
 Select.Where Select.Where.and(Clause clause)
          Adds the provided clause to this WHERE clause.
 Update.Conditions Update.onlyIf(Clause condition)
          Adds a conditions clause (IF) to this statement.
 Update.Conditions Update.Assignments.onlyIf(Clause condition)
          Adds a condition to the UPDATE statement those assignments are part of.
 Update.Conditions Update.Where.onlyIf(Clause condition)
          Adds a condition to the UPDATE statement this WHERE clause is part of.
 Update.Conditions Update.Options.onlyIf(Clause condition)
          Adds a condition to the UPDATE statement these options are part of.
 Delete.Where Delete.where(Clause clause)
          Adds a WHERE clause to this statement.
 Delete.Where Delete.Options.where(Clause clause)
          Adds a where clause to the DELETE statement these options are part of.
 Update.Where Update.where(Clause clause)
          Adds a WHERE clause to this statement.
 Update.Where Update.Assignments.where(Clause clause)
          Adds a where clause to the UPDATE statement those assignments are part of.
 Update.Where Update.Options.where(Clause clause)
          Adds a where clause to the UPDATE statement these options are part of.
 Update.Where Update.Conditions.where(Clause clause)
          Adds a where clause to the UPDATE statement these conditions are part of.
 Select.Where Select.where(Clause clause)
          Adds a WHERE clause to this statement.
 



Copyright © 2013. All rights reserved.