Class TransformingComparator<I,O>
java.lang.Object
org.apache.commons.collections4.comparators.TransformingComparator<I,O>
- Type Parameters:
I
- the input type to the transformerO
- the output type from the transformer
- All Implemented Interfaces:
Serializable
,Comparator<I>
Decorates another Comparator with transformation behavior. That is, the
return value from the transform operation will be passed to the decorated
compare
method.
This class is Serializable from Commons Collections 4.0.
- Since:
- 2.1
- See Also:
-
Constructor Summary
ConstructorDescriptionTransformingComparator
(Transformer<? super I, ? extends O> transformer) Constructs an instance with the given Transformer and aComparableComparator
.TransformingComparator
(Transformer<? super I, ? extends O> transformer, Comparator<O> decorated) Constructs an instance with the given Transformer and Comparator. -
Method Summary
Modifier and TypeMethodDescriptionint
Returns the result of comparing the values from the transform operation.boolean
Returnstrue
iff that Object is aComparator
whose ordering is known to be equivalent to mine.int
hashCode()
Implement a hash code for this comparator that is consistent withequals
.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.Comparator
reversed, thenComparing, thenComparing, thenComparing, thenComparingDouble, thenComparingInt, thenComparingLong
-
Constructor Details
-
TransformingComparator
Constructs an instance with the given Transformer and aComparableComparator
.- Parameters:
transformer
- what will transform the arguments tocompare
-
TransformingComparator
public TransformingComparator(Transformer<? super I, ? extends O> transformer, Comparator<O> decorated) Constructs an instance with the given Transformer and Comparator.- Parameters:
transformer
- what will transform the arguments tocompare
decorated
- the decorated Comparator
-
-
Method Details
-
compare
Returns the result of comparing the values from the transform operation.- Specified by:
compare
in interfaceComparator<I>
- 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
-
equals
Returnstrue
iff that Object is aComparator
whose ordering is known to be equivalent to mine.This implementation returns
true
iff<i>that</i>
is aTransformingComparator
whose attributes are equal to mine.- Specified by:
equals
in interfaceComparator<I>
- Overrides:
equals
in classObject
- Parameters:
object
- the object to compare to- Returns:
- true if equal
-
hashCode
Implement a hash code for this comparator that is consistent withequals
.
-