Class TransformingComparator
java.lang.Object
org.apache.commons.collections.comparators.TransformingComparator
- All Implemented Interfaces:
Comparator
@Deprecated(since="2021-04-30")
public class TransformingComparator
extends Object
implements Comparator
Deprecated.
Apache Commons Collections version 3.x is being deprecated from AEMaaCS. The upgraded version 4.4 of Commons Collections is already included as replacement. Customers are advised to upgrade to this version of the library. Please note: the package name was changed to org.apache.commons.collections4. Further note that there are AEM APIs currently exposing the old collections classes; these will be updated in upcoming releases.
Decorates another Comparator with transformation behavior. That is, the
return value from the transform operation will be passed to the decorated
compare
method.- Since:
- Commons Collections 2.0 (?)
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionTransformingComparator
(Transformer transformer) Deprecated.Constructs an instance with the given Transformer and aComparableComparator
.TransformingComparator
(Transformer transformer, Comparator decorated) Deprecated.Constructs an instance with the given Transformer and Comparator. -
Method Summary
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.Comparator
equals, reversed, thenComparing, thenComparing, thenComparing, thenComparingDouble, thenComparingInt, thenComparingLong
-
Constructor Details
-
TransformingComparator
Deprecated.Constructs an instance with the given Transformer and aComparableComparator
.- Parameters:
transformer
- what will transform the arguments tocompare
-
TransformingComparator
Deprecated.Constructs an instance with the given Transformer and Comparator.- Parameters:
transformer
- what will transform the arguments tocompare
decorated
- the decorated Comparator
-
-
Method Details
-
compare
Deprecated.Returns the result of comparing the values from the transform operation.- Specified by:
compare
in interfaceComparator
- Parameters:
obj1
- the first object to transform then compareobj2
- the second object to transform then compare- Returns:
- negative if obj1 is less, positive if greater, zero if equal
-