Modifier and Type | Field and Description |
---|---|
protected Boolean |
isCounterOp |
protected T |
statement |
Modifier and Type | Method and Description |
---|---|
Select.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.
|
Select |
limit(int limit)
Adds a LIMIT clause to the SELECT statement this Where clause if
part of.
|
Select |
orderBy(Ordering... orderings)
Adds an ORDER BY clause to the SELECT statement this WHERE clause if
part of.
|
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.
|
protected T extends com.datastax.driver.core.querybuilder.BuiltStatement statement
protected Boolean isCounterOp
public Select.Where and(Clause clause)
clause
- the clause to add.public Select orderBy(Ordering... orderings)
orderings
- the orderings to add.IllegalStateException
- if an ORDER BY clause has already been
provided.public Select limit(int limit)
limit
- the limit to set.IllegalArgumentException
- if limit >e; 0
.IllegalStateException
- if a LIMIT clause has already been
provided.public String getQueryString()
Statement
protected 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)
Query
The default consistency level, if this method is not called, is ConsistencyLevel.ONE.
setConsistencyLevel
in class Query
consistency
- the consistency level to set.Query
object.public ConsistencyLevel getConsistencyLevel()
Query
getConsistencyLevel
in class Query
ConsistencyLevel.ONE
if no
consistency level has been specified.public Query enableTracing()
Query
enableTracing
in class Query
Query
object.public Query disableTracing()
Query
disableTracing
in class Query
Query
object.public boolean isTracing()
Query
public 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 Query
policy
- the retry policy to use for this query.Query
object.public RetryPolicy getRetryPolicy()
Query
getRetryPolicy
in class Query
null
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.