Uses of Interface
com.querydsl.core.group.GroupExpression
Packages that use GroupExpression
-
Uses of GroupExpression in com.querydsl.core.group
Classes in com.querydsl.core.group that implement GroupExpressionModifier and TypeClassDescriptionclassA base class for GroupExpressionsclassMixinGroupExpression<E,F, R> MixinGroupExpressionprovides nesting support forGroupExpressioninstancesFields in com.querydsl.core.group with type parameters of type GroupExpressionModifier and TypeFieldDescriptionprotected final List<GroupExpression<?,?>> AbstractGroupByTransformer.groupExpressionsMethods in com.querydsl.core.group that return GroupExpressionModifier and TypeMethodDescriptionstatic <E,F> GroupExpression<E, Set<F>> GroupBy.set(GroupExpression<E, F> groupExpression) Create a new aggregating set expression using a backing LinkedHashSetstatic <E,F extends Comparable<? super F>>
GroupExpression<E,SortedSet<F>> GroupBy.sortedSet(GroupExpression<E, F> groupExpression) Create a new aggregating set expression using a backing TreeSetstatic <E,F> GroupExpression<E, SortedSet<F>> GroupBy.sortedSet(GroupExpression<E, F> groupExpression, Comparator<? super F> comparator) Create a new aggregating set expression using a backing TreeSet using the given comparatorMethods in com.querydsl.core.group with parameters of type GroupExpressionModifier and TypeMethodDescription<T,R> R Group.getGroup(GroupExpression<T, R> coldef) Returns the value of the given group.<T,R> R GroupImpl.getGroup(GroupExpression<T, R> definition) static <E,F> AbstractGroupExpression<E, List<F>> GroupBy.list(GroupExpression<E, F> groupExpression) Create a new aggregating list expressionstatic <K,V, T, U> AbstractGroupExpression<com.mysema.commons.lang.Pair<K, V>, Map<T, U>> GroupBy.map(GroupExpression<K, T> key, GroupExpression<V, U> value) Create a new aggregating map expression using a backing LinkedHashMapstatic <K,V, T> AbstractGroupExpression<com.mysema.commons.lang.Pair<K, V>, Map<T, V>> GroupBy.map(GroupExpression<K, T> key, Expression<V> value) Create a new aggregating map expression using a backing LinkedHashMapstatic <K,V, U> AbstractGroupExpression<com.mysema.commons.lang.Pair<K, V>, Map<K, U>> GroupBy.map(Expression<K> key, GroupExpression<V, U> value) Create a new aggregating map expression using a backing LinkedHashMapstatic <E,F> GroupExpression<E, Set<F>> GroupBy.set(GroupExpression<E, F> groupExpression) Create a new aggregating set expression using a backing LinkedHashSetstatic <K,V, T extends Comparable<? super T>, U>
AbstractGroupExpression<com.mysema.commons.lang.Pair<K,V>, SortedMap<T, U>> GroupBy.sortedMap(GroupExpression<K, T> key, GroupExpression<V, U> value) Create a new aggregating map expression using a backing TreeMapstatic <K,V, T, U> AbstractGroupExpression<com.mysema.commons.lang.Pair<K, V>, SortedMap<T, U>> GroupBy.sortedMap(GroupExpression<K, T> key, GroupExpression<V, U> value, Comparator<? super T> comparator) Create a new aggregating map expression using a backing TreeMap using the given comparatorstatic <K,V, T extends Comparable<? super T>>
AbstractGroupExpression<com.mysema.commons.lang.Pair<K,V>, SortedMap<T, V>> GroupBy.sortedMap(GroupExpression<K, T> key, Expression<V> value) Create a new aggregating map expression using a backing TreeMapstatic <K,V, T> AbstractGroupExpression<com.mysema.commons.lang.Pair<K, V>, SortedMap<T, V>> GroupBy.sortedMap(GroupExpression<K, T> key, Expression<V> value, Comparator<? super T> comparator) Create a new aggregating map expression using a backing TreeMap using the given comparatorstatic <K extends Comparable<? super K>,V, U>
AbstractGroupExpression<com.mysema.commons.lang.Pair<K,V>, SortedMap<K, U>> GroupBy.sortedMap(Expression<K> key, GroupExpression<V, U> value) Create a new aggregating map expression using a backing TreeMapstatic <K,V, U> AbstractGroupExpression<com.mysema.commons.lang.Pair<K, V>, SortedMap<K, U>> GroupBy.sortedMap(Expression<K> key, GroupExpression<V, U> value, Comparator<? super K> comparator) Create a new aggregating map expression using a backing TreeMap using the given comparatorstatic <E,F extends Comparable<? super F>>
GroupExpression<E,SortedSet<F>> GroupBy.sortedSet(GroupExpression<E, F> groupExpression) Create a new aggregating set expression using a backing TreeSetstatic <E,F> GroupExpression<E, SortedSet<F>> GroupBy.sortedSet(GroupExpression<E, F> groupExpression, Comparator<? super F> comparator) Create a new aggregating set expression using a backing TreeSet using the given comparatorConstructors in com.querydsl.core.group with parameters of type GroupExpressionModifierConstructorDescriptionMixinGroupExpression(GroupExpression<E, F> groupExpression, GroupExpression<F, R> mixin) Constructor parameters in com.querydsl.core.group with type arguments of type GroupExpressionModifierConstructorDescriptionGroupImpl(List<GroupExpression<?, ?>> columnDefinitions, List<QPair<?, ?>> maps)