ForcedType forcedType = db.getConfiguredForcedType(child, definedType);
if (forcedType != null) {
String type = forcedType.getName();
String converter = null;
CustomType customType = customType(db, forcedType.getName());
if (customType != null) {
type = (!StringUtils.isBlank(customType.getType()))
? customType.getType()
: customType.getName();
converter = customType.getConverter();
}
log.info("Forcing type", child + " with type " + definedType.getType() + " into " + type + (converter != null ? " using converter " + converter : ""));
DataType<?> forcedDataType = null;