| Modifier and Type | Method and Description | 
|---|---|
| static BindMarker | QueryBuilder. bindMarker()Creates an anonymous bind marker, which appears as  ?in the generated CQL. | 
| static BindMarker | QueryBuilder. bindMarker(CqlIdentifier id)Creates a named bind marker, which appears as  :idin the generated CQL. | 
| static BindMarker | QueryBuilder. bindMarker(String name)Shortcut for  bindMarker(CqlIdentifier.fromCql(name)) | 
| Modifier and Type | Method and Description | 
|---|---|
| DeleteSelection | DeleteSelection. usingTimestamp(BindMarker bindMarker)Adds a USING TIMESTAMP clause to this statement with a bind marker. | 
| Modifier and Type | Method and Description | 
|---|---|
| JsonInsert | InsertInto. json(BindMarker bindMarker)Makes this statement an INSERT JSON with a bind marker, as in  INSERT JSON ?. | 
| Insert | Insert. usingTimestamp(BindMarker bindMarker)Adds a USING TIMESTAMP clause to this statement with a bind marker. | 
| Insert | Insert. usingTtl(BindMarker bindMarker)Adds a  USING TTLclause to this statement with a bind marker. | 
| Modifier and Type | Method and Description | 
|---|---|
| default ResultT | InRelationBuilder. in(BindMarker bindMarker)Builds an IN relation where the whole set of possible values is a bound variable, as in  IN ?. | 
| Modifier and Type | Method and Description | 
|---|---|
| Select | Select. limit(BindMarker bindMarker)Adds a LIMIT clause to this query with a bind marker. | 
| Select | Select. perPartitionLimit(BindMarker bindMarker)Adds a PER PARTITION LIMIT clause to this query with a bind marker. | 
| Modifier and Type | Method and Description | 
|---|---|
| UpdateStart | UpdateStart. usingTimestamp(BindMarker bindMarker)Adds a USING TIMESTAMP clause to this statement with a bind marker. | 
| UpdateStart | UpdateStart. usingTtl(BindMarker bindMarker)Adds a  USING TTLclause to this statement with a bind marker. | 
Copyright © 2017–2020. All rights reserved.