|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.commons.collections.comparators.TransformingComparator
public class TransformingComparator
Decorates another Comparator with transformation behavior. That is, the
return value from the transform operation will be passed to the decorated
compare
method.
Transformer
,
ComparableComparator
Field Summary | |
---|---|
protected java.util.Comparator |
decorated
The decorated comparator. |
protected Transformer |
transformer
The transformer being used. |
Constructor Summary | |
---|---|
TransformingComparator(Transformer transformer)
Constructs an instance with the given Transformer and a ComparableComparator . |
|
TransformingComparator(Transformer transformer,
java.util.Comparator decorated)
Constructs an instance with the given Transformer and Comparator. |
Method Summary | |
---|---|
int |
compare(java.lang.Object obj1,
java.lang.Object obj2)
Returns the result of comparing the values from the transform operation. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface java.util.Comparator |
---|
equals |
Field Detail |
---|
protected java.util.Comparator decorated
protected Transformer transformer
Constructor Detail |
---|
public TransformingComparator(Transformer transformer)
ComparableComparator
.
transformer
- what will transform the arguments to compare
public TransformingComparator(Transformer transformer, java.util.Comparator decorated)
transformer
- what will transform the arguments to compare
decorated
- the decorated ComparatorMethod Detail |
---|
public int compare(java.lang.Object obj1, java.lang.Object obj2)
compare
in interface java.util.Comparator
obj1
- the first object to transform then compareobj2
- the second object to transform then compare
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |