| Package | Description |
|---|---|
| org.jinq.orm.internal | |
| org.jinq.orm.stream | |
| org.jinq.tuples |
| Modifier and Type | Method and Description |
|---|---|
<U> QueryComposer<Pair<T,U>> |
QueryComposer.join(JinqStream.Join<T,U> join) |
<U> QueryComposer<Pair<T,U>> |
QueryComposer.joinIterable(JinqStream.JoinToIterable<T,U> join) |
<U> QueryComposer<Pair<T,U>> |
QueryComposer.joinWithSource(JinqStream.JoinWithSource<T,U> join) |
<U> QueryComposer<Pair<T,U>> |
QueryComposer.leftOuterJoin(JinqStream.Join<T,U> join) |
<U> QueryComposer<Pair<T,U>> |
QueryComposer.leftOuterJoinIterable(JinqStream.JoinToIterable<T,U> join) |
| Modifier and Type | Method and Description |
|---|---|
<U,V> Pair<U,V> |
JinqStream.aggregate(JinqStream.AggregateSelect<T,U> aggregate1,
JinqStream.AggregateSelect<T,V> aggregate2)
Calculates more than one aggregate function over the elements of the
stream.
|
<U,V> Pair<U,V> |
NonQueryJinqStream.aggregate(JinqStream.AggregateSelect<T,U> aggregate1,
JinqStream.AggregateSelect<T,V> aggregate2) |
| Modifier and Type | Method and Description |
|---|---|
<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>> |
QueryJinqStream.join(JinqStream.Join<T,U> join) |
<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>> |
NonQueryJinqStream.join(JinqStream.Join<T,U> join) |
<U> JinqStream<Pair<T,U>> |
QueryJinqStream.join(JinqStream.JoinWithSource<T,U> join) |
<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.JoinWithSource<T,U> join) |
<U> JinqStream<Pair<T,U>> |
QueryJinqStream.joinList(JinqStream.JoinToIterable<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.leftOuterJoin(JinqStream.Join<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>> |
NonQueryJinqStream.leftOuterJoin(JinqStream.Join<T,U> join) |
<U> JinqStream<Pair<T,U>> |
QueryJinqStream.leftOuterJoinList(JinqStream.JoinToIterable<T,U> join) |
<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) |
| Modifier and Type | Method and Description |
|---|---|
static <V,W> Collection<Pair<V,W>> |
Pair.PairCollection(V one,
Collection<W> twoList) |
Copyright © 2015. All Rights Reserved.