| Package | Description |
|---|---|
| org.apache.calcite.linq4j |
Language-integrated query for Java (linq4j) main package.
|
| org.apache.calcite.linq4j.function |
Contains definitions of functions and predicates.
|
| Modifier and Type | Method and Description |
|---|---|
static <TSource> int |
EnumerableDefaults.average(Enumerable<TSource> source,
IntegerFunction1<TSource> selector)
Computes the average of a sequence of int values
that are obtained by invoking a transform function on each
element of the input sequence.
|
int |
DefaultEnumerable.average(IntegerFunction1<T> selector) |
int |
ExtendedEnumerable.average(IntegerFunction1<TSource> selector)
Computes the average of a sequence of int values
that are obtained by invoking a transform function on each
element of the input sequence.
|
static <TSource> int |
EnumerableDefaults.max(Enumerable<TSource> source,
IntegerFunction1<TSource> selector)
Invokes a transform function on each element of a
sequence and returns the maximum int value.
|
int |
DefaultEnumerable.max(IntegerFunction1<T> selector) |
int |
ExtendedEnumerable.max(IntegerFunction1<TSource> selector)
Invokes a transform function on each element of a
sequence and returns the maximum int value.
|
static <TSource> int |
EnumerableDefaults.min(Enumerable<TSource> source,
IntegerFunction1<TSource> selector)
Invokes a transform function on each element of a
sequence and returns the minimum int value.
|
int |
DefaultEnumerable.min(IntegerFunction1<T> selector) |
int |
ExtendedEnumerable.min(IntegerFunction1<TSource> selector)
Invokes a transform function on each element of a
sequence and returns the minimum int value.
|
static <TSource> int |
EnumerableDefaults.sum(Enumerable<TSource> source,
IntegerFunction1<TSource> selector)
Computes the sum of the sequence of int values
that are obtained by invoking a transform function on each
element of the input sequence.
|
int |
DefaultEnumerable.sum(IntegerFunction1<T> selector) |
int |
ExtendedEnumerable.sum(IntegerFunction1<TSource> selector)
Computes the sum of the sequence of int values
that are obtained by invoking a transform function on each
element of the input sequence.
|
| Modifier and Type | Method and Description |
|---|---|
int |
DefaultQueryable.averageInteger(FunctionExpression<IntegerFunction1<T>> selector) |
int |
EnumerableQueryable.averageInteger(FunctionExpression<IntegerFunction1<T>> selector) |
int |
ExtendedQueryable.averageInteger(FunctionExpression<IntegerFunction1<TSource>> selector)
Computes the average of a sequence of int values
that is obtained by invoking a projection function on each
element of the input sequence.
|
int |
QueryableRecorder.averageInteger(Queryable<T> source,
FunctionExpression<IntegerFunction1<T>> selector) |
int |
QueryableFactory.averageInteger(Queryable<T> source,
FunctionExpression<IntegerFunction1<T>> selector)
Computes the average of a sequence of int values
that is obtained by invoking a projection function on each
element of the input sequence.
|
static <T> int |
QueryableDefaults.averageInteger(Queryable<T> queryable,
FunctionExpression<IntegerFunction1<T>> selector)
Computes the average of a sequence of int values
that is obtained by invoking a projection function on each
element of the input sequence.
|
int |
DefaultQueryable.sumInteger(FunctionExpression<IntegerFunction1<T>> selector) |
int |
EnumerableQueryable.sumInteger(FunctionExpression<IntegerFunction1<T>> selector) |
int |
ExtendedQueryable.sumInteger(FunctionExpression<IntegerFunction1<TSource>> selector)
Computes the sum of the sequence of int values
that is obtained by invoking a projection function on each
element of the input sequence.
|
int |
QueryableRecorder.sumInteger(Queryable<T> source,
FunctionExpression<IntegerFunction1<T>> selector) |
int |
QueryableFactory.sumInteger(Queryable<T> source,
FunctionExpression<IntegerFunction1<T>> selector)
Computes the sum of the sequence of int values
that is obtained by invoking a projection function on each
element of the input sequence.
|
static <T> int |
QueryableDefaults.sumInteger(Queryable<T> source,
FunctionExpression<IntegerFunction1<T>> selector)
Computes the sum of the sequence of int values
that is obtained by invoking a projection function on each
element of the input sequence.
|
| Modifier and Type | Method and Description |
|---|---|
static <T1> Function1<T1,Integer> |
Functions.adapt(IntegerFunction1<T1> f)
|
Copyright © 2012–2023 The Apache Software Foundation. All rights reserved.