Package one.microstream.util.cql
Class CqlQuery.Abstract<I,O,R>
- java.lang.Object
-
- one.microstream.util.cql.CqlQuery.Abstract<I,O,R>
-
- All Implemented Interfaces:
CqlQuery<I,O,R>
- Direct Known Subclasses:
CqlAggregation.Default
,CqlIteration.Default
,CqlProjection.Default
,CqlQuery.Default
,CqlSelection.Default
,CqlTransfer.Default
public abstract static class CqlQuery.Abstract<I,O,R> extends Object implements CqlQuery<I,O,R>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface one.microstream.util.cql.CqlQuery
CqlQuery.Abstract<I,O,R>, CqlQuery.Default<I,O,R>
-
-
Constructor Summary
Constructors Constructor Description Abstract()
-
Method Summary
Modifier and Type Method Description Long
getLimit()
Comparator<? super O>
getOrder()
Function<? super I,O>
getProjector()
CqlResultor<O,R>
getResultor()
Predicate<? super I>
getSelector()
Long
getSkip()
XIterable<? extends I>
getSource()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface one.microstream.util.cql.CqlQuery
execute, executeInto, executeInto, executeInto, executeInto, executeOn, executeSelection, from, into, into, into, limit, orderBy, over, project, select, skip, targeting
-
-
-
-
Method Detail
-
getSelector
public final Predicate<? super I> getSelector()
- Specified by:
getSelector
in interfaceCqlQuery<I,O,R>
-
getProjector
public Function<? super I,O> getProjector()
- Specified by:
getProjector
in interfaceCqlQuery<I,O,R>
-
getOrder
public final Comparator<? super O> getOrder()
-
getResultor
public final CqlResultor<O,R> getResultor()
- Specified by:
getResultor
in interfaceCqlQuery<I,O,R>
-
-