[#5772] Implement Converter.toString() of Converter.of() and ofNullable() results
This commit is contained in:
parent
da8327d140
commit
4543d89156
@ -163,6 +163,11 @@ public interface Converter<T, U> extends Serializable {
|
||||
public final Class<U> toType() {
|
||||
return toType;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "Converter[T=" + fromType.getName() + ",U=" + toType.getName() + "]";
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user