| Package | Description |
|---|---|
| org.apache.calcite.linq4j |
Language-integrated query for Java (linq4j) main package.
|
| Modifier and Type | Method and Description |
|---|---|
static CorrelateJoinType |
CorrelateJoinType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CorrelateJoinType[] |
CorrelateJoinType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
static <TSource,TInner,TResult> |
EnumerableDefaults.correlateJoin(CorrelateJoinType joinType,
Enumerable<TSource> outer,
Function1<TSource,Enumerable<TInner>> inner,
Function2<TSource,TInner,TResult> resultSelector)
Returns elements of
outer for which there is a member of
inner with a matching key. |
<TInner,TResult> |
DefaultEnumerable.correlateJoin(CorrelateJoinType joinType,
Function1<T,Enumerable<TInner>> inner,
Function2<T,TInner,TResult> resultSelector) |
<TInner,TResult> |
ExtendedEnumerable.correlateJoin(CorrelateJoinType joinType,
Function1<TSource,Enumerable<TInner>> inner,
Function2<TSource,TInner,TResult> resultSelector)
For each row of the current enumerable returns the correlated rows
from the
inner enumerable (nested loops join). |
Copyright © 2012–2016 The Apache Software Foundation. All rights reserved.