类 CompoundComparator<T>

  • 类型参数:
    T - the type of objects that may be compared by this comparator
    所有已实现的接口:
    Serializable, Comparator<T>

    @Deprecated
    public class CompoundComparator<T>
    extends Object
    implements Comparator<T>, Serializable
    已过时。
    as of Spring Framework 5.0, in favor of the standard JDK 8 Comparator.thenComparing(Comparator)
    A comparator that chains a sequence of one or more Comparators.

    A compound comparator calls each Comparator in sequence until a single Comparator returns a non-zero result, or the comparators are exhausted and zero is returned.

    This facilitates in-memory sorting similar to multi-column sorting in SQL. The order of any single Comparator in the list can also be reversed.

    从以下版本开始:
    1.2.2
    作者:
    Keith Donald, Juergen Hoeller
    另请参阅:
    序列化表格
    • 构造器详细资料

      • CompoundComparator

        public CompoundComparator()
        已过时。
        Construct a CompoundComparator with initially no Comparators. Clients must add at least one Comparator before calling the compare method or an IllegalStateException is thrown.
      • CompoundComparator

        public CompoundComparator​(Comparator... comparators)
        已过时。
        Construct a CompoundComparator from the Comparators in the provided array.

        All Comparators will default to ascending sort order, unless they are InvertibleComparators.

        参数:
        comparators - the comparators to build into a compound comparator
        另请参阅:
        InvertibleComparator
    • 方法详细资料

      • addComparator

        public void addComparator​(Comparator<? extends T> comparator)
        已过时。
        Add a Comparator to the end of the chain.

        The Comparator will default to ascending sort order, unless it is a InvertibleComparator.

        参数:
        comparator - the Comparator to add to the end of the chain
        另请参阅:
        InvertibleComparator
      • addComparator

        public void addComparator​(Comparator<? extends T> comparator,
                                  boolean ascending)
        已过时。
        Add a Comparator to the end of the chain using the provided sort order.
        参数:
        comparator - the Comparator to add to the end of the chain
        ascending - the sort order: ascending (true) or descending (false)
      • setComparator

        public void setComparator​(int index,
                                  Comparator<? extends T> comparator)
        已过时。
        Replace the Comparator at the given index.

        The Comparator will default to ascending sort order, unless it is a InvertibleComparator.

        参数:
        index - the index of the Comparator to replace
        comparator - the Comparator to place at the given index
        另请参阅:
        InvertibleComparator
      • setComparator

        public void setComparator​(int index,
                                  Comparator<T> comparator,
                                  boolean ascending)
        已过时。
        Replace the Comparator at the given index using the given sort order.
        参数:
        index - the index of the Comparator to replace
        comparator - the Comparator to place at the given index
        ascending - the sort order: ascending (true) or descending (false)
      • invertOrder

        public void invertOrder()
        已过时。
        Invert the sort order of each sort definition contained by this compound comparator.
      • invertOrder

        public void invertOrder​(int index)
        已过时。
        Invert the sort order of the sort definition at the specified index.
        参数:
        index - the index of the comparator to invert
      • setAscendingOrder

        public void setAscendingOrder​(int index)
        已过时。
        Change the sort order at the given index to ascending.
        参数:
        index - the index of the comparator to change
      • setDescendingOrder

        public void setDescendingOrder​(int index)
        已过时。
        Change the sort order at the given index to descending sort.
        参数:
        index - the index of the comparator to change
      • getComparatorCount

        public int getComparatorCount()
        已过时。
        Returns the number of aggregated comparators.