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