static <V extends java.lang.Comparable> Agg.Max<V> |
Agg.max() |
Helps aggregate the max value according to natural ordering of the type.
|
static <V extends java.lang.Comparable> Agg.Max<V> |
Agg.max(java.lang.Class<V> type) |
Helps aggregate the max value according to natural ordering of the type.
|
static <V> Agg.Max<V> |
Agg.max(java.util.Comparator<V> comparator) |
Helps aggregate the max value.
|
static <V> Agg.Max<V> |
Agg.max(java.util.Comparator<V> comparator,
V initialValue) |
Helps aggregate the max value.
|
static <V extends java.lang.Comparable> Agg.Max<V> |
Agg.max(V initialValue) |
Helps aggregate the max value according to the natural ordering of the type
of initial value.
|