*/
public static final Object INSTANCE = new FreemarkerCustomRenderer();
public String printExerciseType(ExerciseType exerciseType) {
ArgumentChecker.notNull(exerciseType, "exerciseType");
String result = exerciseType.accept(new ExerciseTypeNameVisitor());
return result;
}