Comparator.thenComparing(Comparator)
@Deprecated public class CompoundComparator<T> extends Object implements Comparator<T>, Serializable
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.
Constructor and Description |
---|
CompoundComparator()
Deprecated.
Construct a CompoundComparator with initially no Comparators.
|
CompoundComparator(Comparator... comparators)
Deprecated.
Construct a CompoundComparator from the Comparators in the provided array.
|
Modifier and Type | Method and Description |
---|---|
void |
addComparator(Comparator<? extends T> comparator)
Deprecated.
Add a Comparator to the end of the chain.
|
void |
addComparator(Comparator<? extends T> comparator,
boolean ascending)
Deprecated.
Add a Comparator to the end of the chain using the provided sort order.
|
int |
compare(T o1,
T o2)
Deprecated.
|
boolean |
equals(Object other)
Deprecated.
|
int |
getComparatorCount()
Deprecated.
Returns the number of aggregated comparators.
|
int |
hashCode()
Deprecated.
|
void |
invertOrder()
Deprecated.
Invert the sort order of each sort definition contained by this compound
comparator.
|
void |
invertOrder(int index)
Deprecated.
Invert the sort order of the sort definition at the specified index.
|
void |
setAscendingOrder(int index)
Deprecated.
Change the sort order at the given index to ascending.
|
void |
setComparator(int index,
Comparator<? extends T> comparator)
Deprecated.
Replace the Comparator at the given index.
|
void |
setComparator(int index,
Comparator<T> comparator,
boolean ascending)
Deprecated.
Replace the Comparator at the given index using the given sort order.
|
void |
setDescendingOrder(int index)
Deprecated.
Change the sort order at the given index to descending sort.
|
String |
toString()
Deprecated.
|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
comparing, comparing, comparingDouble, comparingInt, comparingLong, naturalOrder, nullsFirst, nullsLast, reversed, reverseOrder, thenComparing, thenComparing, thenComparing, thenComparingDouble, thenComparingInt, thenComparingLong
public CompoundComparator()
public CompoundComparator(Comparator... comparators)
All Comparators will default to ascending sort order, unless they are InvertibleComparators.
comparators
- the comparators to build into a compound comparatorInvertibleComparator
public void addComparator(Comparator<? extends T> comparator)
The Comparator will default to ascending sort order, unless it is a InvertibleComparator.
comparator
- the Comparator to add to the end of the chainInvertibleComparator
public void addComparator(Comparator<? extends T> comparator, boolean ascending)
comparator
- the Comparator to add to the end of the chainascending
- the sort order: ascending (true) or descending (false)public void setComparator(int index, Comparator<? extends T> comparator)
The Comparator will default to ascending sort order, unless it is a InvertibleComparator.
index
- the index of the Comparator to replacecomparator
- the Comparator to place at the given indexInvertibleComparator
public void setComparator(int index, Comparator<T> comparator, boolean ascending)
index
- the index of the Comparator to replacecomparator
- the Comparator to place at the given indexascending
- the sort order: ascending (true) or descending (false)public void invertOrder()
public void invertOrder(int index)
index
- the index of the comparator to invertpublic void setAscendingOrder(int index)
index
- the index of the comparator to changepublic void setDescendingOrder(int index)
index
- the index of the comparator to changepublic int getComparatorCount()
public int compare(T o1, T o2)
compare
in interface Comparator<T>
public boolean equals(Object other)
equals
in interface Comparator<T>
equals
in class Object