@Override
public void doProcess() {
if (StringUtils.isNotBlank(stringifiedValue)) {
ThemeOption themeOption = null;
try {
themeOption = ThemeOption.valueOf(stringifiedValue.toUpperCase());
} catch (IllegalArgumentException e) {
StringBuilder sb = new StringBuilder();