public final class SearchProjections extends Object
SearchProjection
.Modifier and Type | Method and Description |
---|---|
static SearchProjection |
alias(SearchProjection projection,
String alias)
Wraps projection with aliased projection.
|
static SearchProjection |
avg(String field)
Creates projection which add given field to the "GROUP BY" clause and its "avg" to the "SELECT" clause.
|
static SearchProjection |
count(String field)
Creates projection which add given field to the "GROUP BY" clause and its "count" to the "SELECT" clause.
|
static SearchProjection |
countDistinct(String field)
Creates projection which add given field to the "GROUP BY" clause and its "count with distinct" to the "SELECT" clause.
|
static SearchProjection |
distinct(SearchProjection projection)
Wraps projection with distinct projection.
|
static SearchProjection |
field(String field)
Creates projection which add given field to the "SELECT" clause.
|
static SearchProjection |
groupField(String field)
Creates projection which add given field to the "GROUP BY" clause.
|
static SearchProjection |
id()
Creates projection which add "id" field to the "SELECT" clause.
|
static SearchProjectionList |
list()
Creates projection's list.
|
static SearchProjection |
max(String field)
Creates projection which add given field to the "GROUP BY" clause and its "max" to the "SELECT" clause.
|
static SearchProjection |
min(String field)
Creates projection which add given field to the "GROUP BY" clause and its "min" to the "SELECT" clause.
|
static SearchProjection |
rowCount()
Creates projection which add "count(*)" to the "SELECT" clause.
|
static SearchProjection |
sum(String field)
Creates projection which add given field to the "GROUP BY" clause and its "sum" to the "SELECT" clause.
|
public static SearchProjection alias(SearchProjection projection, String alias)
projection
- projectionalias
- aliaspublic static SearchProjection avg(String field)
field
- fieldpublic static SearchProjection count(String field)
field
- fieldpublic static SearchProjection countDistinct(String field)
field
- fieldpublic static SearchProjection distinct(SearchProjection projection)
projection
- projectionpublic static SearchProjection field(String field)
field
- fieldpublic static SearchProjection groupField(String field)
field
- fieldpublic static SearchProjection id()
public static SearchProjectionList list()
public static SearchProjection max(String field)
field
- fieldpublic static SearchProjection min(String field)
field
- fieldpublic static SearchProjection rowCount()
public static SearchProjection sum(String field)
field
- fieldCopyright © 2010-2025 Qcadoo Limited