类 Comparators

java.lang.Object
cn.taketoday.util.comparator.Comparators

public abstract class Comparators extends Object
Convenient entry point with generically typed factory methods for common Comparator variants.
从以下版本开始:
4.0
作者:
Juergen Hoeller
  • 构造器详细资料

    • Comparators

      public Comparators()
  • 方法详细资料

    • comparable

      public static <T> Comparator<T> comparable()
      Return a Comparable adapter.
      另请参阅:
    • nullsLow

      public static <T> Comparator<T> nullsLow()
      Return a Comparable adapter which accepts null values and sorts them lower than non-null values.
      另请参阅:
    • nullsLow

      public static <T> Comparator<T> nullsLow(Comparator<T> comparator)
      Return a decorator for the given comparator which accepts null values and sorts them lower than non-null values.
      另请参阅:
      • NullSafeComparator(boolean)
    • nullsHigh

      public static <T> Comparator<T> nullsHigh()
      Return a Comparable adapter which accepts null values and sorts them higher than non-null values.
      另请参阅:
    • nullsHigh

      public static <T> Comparator<T> nullsHigh(Comparator<T> comparator)
      Return a decorator for the given comparator which accepts null values and sorts them higher than non-null values.
      另请参阅:
      • NullSafeComparator(boolean)