| Modifier and Type | Field and Description | 
|---|---|
protected Boolean | 
isCounterOp  | 
protected T | 
statement  | 
| Modifier and Type | Method and Description | 
|---|---|
Update.Where | 
and(Clause clause)
Adds the provided clause to this WHERE clause. 
 | 
protected StringBuilder | 
buildQueryString()  | 
Query | 
disableTracing()
Disables tracing for this query. 
 | 
Query | 
enableTracing()
Enables tracing for this query. 
 | 
ConsistencyLevel | 
getConsistencyLevel()
Returns the consistency level. 
 | 
String | 
getQueryString()
Returns the query string for this statement. 
 | 
RetryPolicy | 
getRetryPolicy()
Returns the retry policy sets for this query, if any. 
 | 
ByteBuffer | 
getRoutingKey()
Returns the routing key (in binary raw form) to use for token aware 
 routing of this query. 
 | 
protected boolean | 
isCounterOp()  | 
boolean | 
isTracing()
Returns whether tracing is enabled for this query or not. 
 | 
Query | 
setConsistencyLevel(ConsistencyLevel consistency)
Sets the consistency level for the query. 
 | 
protected void | 
setCounterOp(boolean isCounterOp)  | 
protected void | 
setDirty()  | 
Query | 
setRetryPolicy(RetryPolicy policy)
Sets the retry policy to use for this query. 
 | 
Update.Options | 
using(Using using)
Adds an option to the UPDATE statement this WHERE clause is part of. 
 | 
Update.Assignments | 
with(Assignment assignment)
Adds an assignment to the UPDATE statement this WHERE clause is part of. 
 | 
protected T extends com.datastax.driver.core.querybuilder.BuiltStatement statement
protected Boolean isCounterOp
public Update.Where and(Clause clause)
clause - the clause to add.public Update.Assignments with(Assignment assignment)
assignment - the assignment to add.public Update.Options using(Using using)
using - the using clause to add.public String getQueryString()
Statementprotected StringBuilder buildQueryString()
public ByteBuffer getRoutingKey()
Query
 The routing key is optional in that implementers are free to
 return null. The routing key is an hint used for token-aware routing (see
 TokenAwarePolicy), and
 if provided should correspond to the binary value for the query
 partition key. However, not providing a routing key never causes a query
 to fail and if the load balancing policy used is not token aware, then
 the routing key can be safely ignored.
null.protected void setDirty()
protected boolean isCounterOp()
public Query setConsistencyLevel(ConsistencyLevel consistency)
QueryThe default consistency level, if this method is not called, is ConsistencyLevel.ONE.
setConsistencyLevel in class Queryconsistency - the consistency level to set.Query object.public ConsistencyLevel getConsistencyLevel()
QuerygetConsistencyLevel in class QueryConsistencyLevel.ONE if no
 consistency level has been specified.public Query enableTracing()
QueryenableTracing in class QueryQuery object.public Query disableTracing()
QuerydisableTracing in class QueryQuery object.public boolean isTracing()
Querypublic Query setRetryPolicy(RetryPolicy policy)
Query
 The default retry policy, if this method is not called, is the one returned by
 Policies.getRetryPolicy() in the
 cluster configuration. This method is thus only useful in case you want
 to punctually override the default policy for this request.
setRetryPolicy in class Querypolicy - the retry policy to use for this query.Query object.public RetryPolicy getRetryPolicy()
QuerygetRetryPolicy in class Querynull if no query specific
 retry policy has been set through Query.setRetryPolicy(com.datastax.driver.core.policies.RetryPolicy) (in which case
 the Cluster retry policy will apply if necessary).protected void setCounterOp(boolean isCounterOp)
Copyright © 2014. All Rights Reserved.