Package com.redis.lettucemod.search
Interface AggregateOperation<K,V>
-
- All Superinterfaces:
RediSearchArgument<K,V>
public interface AggregateOperation<K,V> extends RediSearchArgument<K,V>
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classAggregateOperation.Type
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static <K,V>
Apply.Builder<K,V>apply(V expression)static <V> Filter<V>filter(V expression)AggregateOperation.TypegetType()static Group.BuildergroupBy(java.lang.String... properties)static Limit.NumBuilderlimit(long offset)static Sort.Buildersort(Sort.Property... properties)-
Methods inherited from interface com.redis.lettucemod.search.RediSearchArgument
build
-
-
-
-
Method Detail
-
getType
AggregateOperation.Type getType()
-
apply
static <K,V> Apply.Builder<K,V> apply(V expression)
-
filter
static <V> Filter<V> filter(V expression)
-
groupBy
static Group.Builder groupBy(java.lang.String... properties)
-
limit
static Limit.NumBuilder limit(long offset)
-
sort
static Sort.Builder sort(Sort.Property... properties)
-
-