com.slimgears.util.stream.Comparables Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stream-utils Show documentation
Show all versions of stream-utils Show documentation
General purpose utils / module: stream-utils
package com.slimgears.util.stream;
import java.util.Comparator;
public class Comparables {
public static > T max(T first, T second) {
return Comparator.nullsFirst(Comparator.naturalOrder()).compare(first, second) > 0 ? first : second;
}
public static > T min(T first, T second) {
return Comparator.nullsLast(Comparator.naturalOrder()).compare(first, second) < 0 ? first : second;
}
}