public abstract static class Select.Selection extends Select.Builder
Constructor and Description |
---|
Selection() |
Modifier and Type | Method and Description |
---|---|
abstract Select.Builder |
all()
Selects all columns (i.e.
|
Select.SelectionOrAlias |
avg(Object column)
Creates an
avg(x) built-in function call. |
Select.SelectionOrAlias |
cast(Object column,
DataType targetType)
Creates a cast of an expression to a given CQL type.
|
abstract Select.SelectionOrAlias |
column(String name)
Selects the provided column.
|
Select.SelectionOrAlias |
count(Object column)
Creates a
count(x) built-in function call. |
abstract Select.Builder |
countAll()
Selects the count of all returned rows (i.e.
|
Select.Selection |
distinct()
Uses DISTINCT selection.
|
abstract Select.SelectionOrAlias |
fcall(String name,
Object... parameters)
Creates a function call.
|
Select.Selection |
json()
Uses JSON selection.
|
Select.SelectionOrAlias |
max(Object column)
Creates a
max(x) built-in function call. |
Select.SelectionOrAlias |
min(Object column)
Creates a
min(x) built-in function call. |
Select.SelectionOrAlias |
path(String... segments)
Selects the provided path.
|
Select.SelectionOrAlias |
raw(String rawString)
Selects the provided raw expression.
|
Select.SelectionOrAlias |
sum(Object column)
Creates a
sum(x) built-in function call. |
Select.SelectionOrAlias |
toJson(String column)
Creates a
toJson() function call. |
abstract Select.SelectionOrAlias |
ttl(String name)
Selects the ttl of provided column.
|
abstract Select.SelectionOrAlias |
writeTime(String name)
Selects the write time of provided column.
|
from, from, from
public Select.Selection distinct()
distinct
in class Select.Builder
public Select.Selection json()
Cassandra 2.2 introduced JSON support to SELECT statements:
the JSON
keyword can be used to return each row as a single JSON encoded map.
json
in class Select.Builder
public abstract Select.Builder all()
IllegalStateException
- if some columns had already been selected for this builder.public abstract Select.Builder countAll()
IllegalStateException
- if some columns had already been selected for this builder.public abstract Select.SelectionOrAlias column(String name)
name
- the new column name to add.public abstract Select.SelectionOrAlias writeTime(String name)
fcall("writetime", QueryBuilder.column(name))
.name
- the name of the column to select the write time of.public abstract Select.SelectionOrAlias ttl(String name)
fcall("ttl", QueryBuilder.column(name))
.name
- the name of the column to select the ttl of.public abstract Select.SelectionOrAlias fcall(String name, Object... parameters)
fcall("textToBlob", "foo")
will generate the string
"textToBlob('foo')"
. If you want to generate
"textToBlob(foo)"
, i.e. if the argument must be interpreted
as a column name (in a select clause), you will need to use the
QueryBuilder.column(java.lang.String)
method, and so
fcall("textToBlob", QueryBuilder.column(foo)
.name
- the name of the function.parameters
- the parameters for the function call.public Select.SelectionOrAlias cast(Object column, DataType targetType)
column
- the expression to cast. It can be a complex expression like a
function call
.targetType
- the target CQL type to cast to. Use static methods such as DataType.text()
.public Select.SelectionOrAlias raw(String rawString)
rawString
- the raw expression to add.public Select.SelectionOrAlias path(String... segments)
segments
will be concatenated together with dots.
If any segment contains an identifier that needs quoting,
caller code is expected to call QueryBuilder.quote(String)
prior to
invoking this method.
This method is currently only useful when accessing individual fields of a
user-defined type
(UDT),
which is only possible since CASSANDRA-7423.
Note that currently nested UDT fields are not supported and
will be rejected by the server as a
syntax error
.segments
- the segments of the path to create.public Select.SelectionOrAlias toJson(String column)
toJson()
function call.
This is a shortcut for fcall("toJson", QueryBuilder.column(name))
.
Support for JSON functions has been added in Cassandra 2.2.
The toJson()
function is similar to SELECT JSON
statements,
but applies to a single column value instead of the entire row,
and produces a JSON-encoded string representing the normal Cassandra column value.
It may only be used in the selection clause of a SELECT
statement.column
- the column to retrieve JSON from.public Select.SelectionOrAlias count(Object column)
count(x)
built-in function call.public Select.SelectionOrAlias max(Object column)
max(x)
built-in function call.public Select.SelectionOrAlias min(Object column)
min(x)
built-in function call.public Select.SelectionOrAlias sum(Object column)
sum(x)
built-in function call.public Select.SelectionOrAlias avg(Object column)
avg(x)
built-in function call.Copyright © 2012–2017. All rights reserved.