类 ConvertingComparator<S,T>

java.lang.Object
cn.taketoday.core.conversion.ConvertingComparator<S,T>
类型参数:
S - the source type
T - the target type
所有已实现的接口:
Comparator<S>

public class ConvertingComparator<S,T> extends Object implements Comparator<S>
A Comparator that converts values before they are compared.

The specified Converter will be used to convert each value before it is passed to the underlying Comparator.

从以下版本开始:
4.0
作者:
Phillip Webb