[#5772] Implement Converter.toString() of Converter.of() and ofNullable() results

This commit is contained in:
lukaseder 2017-01-05 17:36:31 +01:00
parent da8327d140
commit 4543d89156

View File

@ -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() + "]";
}
};
}