Class<?> configType = configValueAnnotation.searchType();
if (configType == Object.class) {
configType = configClass;
}
// extract description
String description = configValueAnnotation.description();
if (description.length() == 0) {
description = configType.getSimpleName();
}
// store
Class<?> old = result.put(configType.getSimpleName(), configType);