<U> JinqStream<Pair<T,U>> |
JinqStream.crossJoin(JinqStream<U> join) |
Performs a full cross-join of the elements of two streams.
|
<U> JinqStream<Pair<T,U>> |
NonQueryJinqStream.crossJoin(JinqStream<U> join) |
|
<U> JinqStream<Pair<T,U>> |
QueryJinqStream.crossJoin(JinqStream<U> join) |
|
<U,V> JinqStream<Pair<U,V>> |
JinqStream.group(JinqStream.Select<T,U> select,
JinqStream.AggregateGroup<U,T,V> aggregate) |
Groups together elements from the stream that share a common key.
|
<U,V> JinqStream<Pair<U,V>> |
NonQueryJinqStream.group(JinqStream.Select<T,U> select,
JinqStream.AggregateGroup<U,T,V> aggregate) |
|
<U> JinqStream<Pair<T,U>> |
JinqStream.join(JinqStream.Join<T,U> join) |
Pairs up each entry of the stream with a stream of related elements.
|
<U> JinqStream<Pair<T,U>> |
JinqStream.join(JinqStream.JoinWithSource<T,U> join) |
Pairs up each entry of the stream with a stream of related elements.
|
<U> JinqStream<Pair<T,U>> |
NonQueryJinqStream.join(JinqStream.Join<T,U> join) |
|
<U> JinqStream<Pair<T,U>> |
NonQueryJinqStream.join(JinqStream.JoinWithSource<T,U> join) |
|
<U> JinqStream<Pair<T,U>> |
QueryJinqStream.join(JinqStream.Join<T,U> join) |
|
<U> JinqStream<Pair<T,U>> |
QueryJinqStream.join(JinqStream.JoinWithSource<T,U> join) |
|
<U> JinqStream<Pair<T,U>> |
JinqStream.joinList(JinqStream.JoinToIterable<T,U> join) |
A variant of join() that can be used if you want to join to a
collection without the trouble of converting it to a JinqStream
first.
|
<U> JinqStream<Pair<T,U>> |
NonQueryJinqStream.joinList(JinqStream.JoinToIterable<T,U> join) |
|
<U> JinqStream<Pair<T,U>> |
QueryJinqStream.joinList(JinqStream.JoinToIterable<T,U> join) |
|
<U> JinqStream<Pair<T,U>> |
JinqStream.leftOuterJoin(JinqStream.Join<T,U> join) |
Pairs up each entry of the stream with a stream of related elements.
|
<U> JinqStream<Pair<T,U>> |
JinqStream.leftOuterJoin(JinqStream.JoinWithSource<T,U> join,
JinqStream.WhereForOn<T,U> on) |
Pairs up each entry of the stream with a stream of related elements.
|
<U> JinqStream<Pair<T,U>> |
NonQueryJinqStream.leftOuterJoin(JinqStream.Join<T,U> join) |
|
<U> JinqStream<Pair<T,U>> |
NonQueryJinqStream.leftOuterJoin(JinqStream.JoinWithSource<T,U> join,
JinqStream.WhereForOn<T,U> on) |
|
<U> JinqStream<Pair<T,U>> |
QueryJinqStream.leftOuterJoin(JinqStream.Join<T,U> join) |
|
<U> JinqStream<Pair<T,U>> |
QueryJinqStream.leftOuterJoin(JinqStream.JoinWithSource<T,U> join,
JinqStream.WhereForOn<T,U> on) |
|
<U> JinqStream<Pair<T,U>> |
JinqStream.leftOuterJoinList(JinqStream.JoinToIterable<T,U> join) |
A variant of leftOuterJoin() that can be used if you want to join to a
collection without the trouble of converting it to a JinqStream
first.
|
<U> JinqStream<Pair<T,U>> |
NonQueryJinqStream.leftOuterJoinList(JinqStream.JoinToIterable<T,U> join) |
|
<U> JinqStream<Pair<T,U>> |
QueryJinqStream.leftOuterJoinList(JinqStream.JoinToIterable<T,U> join) |
|