String outputType = firstLetterCaps(value);
String className = RENDERER_PREFIX + outputType + RENDERER_SUFFIX;
try {
clazz = (Class<JRExporter>) Reflections.classForName(className);
} catch (ClassNotFoundException cnfe) {
throw new ReportException("Class " + className + " not found", cnfe);
}
return clazz;
}