static FilterableWindowOver<Boolean> |
JPQLNextExpressions.all(com.querydsl.core.types.Expression<Boolean> expr) |
Start a window function expression
|
static FilterableWindowOver<Boolean> |
JPQLNextExpressions.any(com.querydsl.core.types.Expression<Boolean> expr) |
Start a window function expression
|
static <T extends Number> FilterableWindowOver<T> |
JPQLNextExpressions.avg(com.querydsl.core.types.Expression<T> expr) |
Start a window function expression
|
static FilterableWindowOver<Long> |
JPQLNextExpressions.count() |
Start a window function expression
|
static FilterableWindowOver<Long> |
JPQLNextExpressions.count(com.querydsl.core.types.Expression<?> expr) |
Start a window function expression
|
static FilterableWindowOver<Long> |
JPQLNextExpressions.countDistinct(com.querydsl.core.types.Expression<?> expr) |
Start a window function expression
|
static FilterableWindowOver<Double> |
JPQLNextExpressions.cumeDist() |
CUME_DIST calculates the cumulative distribution of a value in a group of values.
|
static FilterableWindowOver<Long> |
JPQLNextExpressions.denseRank() |
rank of the current row without gaps; this function counts peer groups
|
static <T> FilterableWindowOver<T> |
JPQLNextExpressions.firstValue(com.querydsl.core.types.Expression<T> expr) |
returns value evaluated at the row that is the first row of the window frame
|
static <T> FilterableWindowOver<T> |
JPQLNextExpressions.lag(com.querydsl.core.types.Expression<T> expr) |
expr evaluated at the row that is one row before the current row within the partition
|
static <T> FilterableWindowOver<T> |
JPQLNextExpressions.lastValue(com.querydsl.core.types.Expression<T> expr) |
returns value evaluated at the row that is the last row of the window frame
|
static <T> FilterableWindowOver<T> |
JPQLNextExpressions.lead(com.querydsl.core.types.Expression<T> expr) |
expr evaluated at the row that is one row after the current row within the partition;
|
static <T extends Comparable<? super T>> FilterableWindowOver<T> |
JPQLNextExpressions.max(com.querydsl.core.types.Expression<T> expr) |
Start a window function expression
|
static <T extends Comparable<? super T>> FilterableWindowOver<T> |
JPQLNextExpressions.min(com.querydsl.core.types.Expression<T> expr) |
Start a window function expression
|
static <T> FilterableWindowOver<T> |
JPQLNextExpressions.nthValue(com.querydsl.core.types.Expression<T> expr,
com.querydsl.core.types.Expression<? extends Number> n) |
NTH_VALUE returns the expr value of the nth row in the window defined by the analytic clause.
|
static <T> FilterableWindowOver<T> |
JPQLNextExpressions.nthValue(com.querydsl.core.types.Expression<T> expr,
Number n) |
NTH_VALUE returns the expr value of the nth row in the window defined by the analytic clause.
|
static <T extends Number & Comparable> FilterableWindowOver<T> |
JPQLNextExpressions.ntile(T num) |
divides an ordered data set into a number of buckets indicated by expr and assigns the
appropriate bucket number to each row
|
static FilterableWindowOver<Double> |
JPQLNextExpressions.percentRank() |
As an analytic function, for a row r, PERCENT_RANK calculates the rank of r minus 1, divided by
1 less than the number of rows being evaluated (the entire query result set or a partition).
|
static FilterableWindowOver<Long> |
JPQLNextExpressions.rank() |
rank of the current row with gaps; same as row_number of its first peer
|
static FilterableWindowOver<Long> |
JPQLNextExpressions.rowNumber() |
number of the current row within its partition, counting from 1
|
static <T extends Number> FilterableWindowOver<T> |
JPQLNextExpressions.sum(com.querydsl.core.types.Expression<T> expr) |
Start a window function expression
|