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