All Methods Static Methods Instance Methods Abstract Methods Default Methods
| Modifier and Type |
Method and Description |
default R |
execute() |
default O[] |
executeInto(O[] target) |
default O[] |
executeInto(O[] target,
int size) |
default <P extends Consumer<O>> P |
executeInto(P target) |
default <P extends Consumer<O>> P |
executeInto(XIterable<? extends I> source,
P target) |
default R |
executeOn(XIterable<? extends I> source) |
default <P extends Consumer<I>> P |
executeSelection(XIterable<? extends I> source,
P target) |
default CqlQuery<I,O,R> |
from(XIterable<? extends I> source) |
default Long |
getLimit() |
default Comparator<? super O> |
getOrder() |
Function<? super I,O> |
getProjector() |
CqlResultor<O,R> |
getResultor() |
default Predicate<? super I> |
getSelector() |
default Long |
getSkip() |
default XIterable<? extends I> |
getSource() |
default <X extends XIterable<O>> CqlIteration<I,O,X> |
into(CqlResultor<O,X> resultor) |
default <P extends Consumer<O> & XIterable<O>> CqlIteration<I,O,P> |
into(P target) |
default <P extends Consumer<O> & XIterable<O>> CqlIteration<I,O,P> |
into(Supplier<P> supplier) |
default CqlQuery<I,O,R> |
limit(Number count) |
static <I,O,R> CqlQuery<I,O,R> |
New() |
static <I,O> CqlQuery<I,O,XSequence<O>> |
New(XIterable<? extends I> source,
Long skip,
Long limit,
Predicate<? super I> selector,
Function<? super I,O> projector,
Comparator<? super O> comparator) |
static <I,O,R> CqlQuery<I,O,R> |
New(XIterable<? extends I> source,
Long skip,
Long limit,
Predicate<? super I> selector,
Function<? super I,O> projector,
Comparator<? super O> comparator,
Aggregator<O,R> aggregator,
R target) |
static <I,O,R> CqlQuery<I,O,R> |
New(XIterable<? extends I> source,
Long skip,
Long limit,
Predicate<? super I> selector,
Function<? super I,O> projector,
Comparator<? super O> comparator,
CqlResultor<O,R> resultor) |
static <I,O,R extends Consumer<O> & XIterable<O>> CqlQuery<I,O,R> |
New(XIterable<? extends I> source,
Long skip,
Long limit,
Predicate<? super I> selector,
Function<? super I,O> projector,
Comparator<? super O> comparator,
R target) |
default CqlQuery<I,O,R> |
orderBy(Comparator<? super O> order) |
default <R1> CqlQuery<I,O,R1> |
over(CqlResultor<O,R1> resultor) |
default <P> CqlProjection<I,P> |
project(Function<? super I,P> projector) |
default CqlQuery<I,O,R> |
select(Predicate<? super I> selector) |
default CqlQuery<I,O,R> |
skip(Number count) |
default <R1> CqlQuery<I,O,R1> |
targeting(Aggregator<O,R1> collector) |