Field[] classFields = clazz.getDeclaredFields();
for (Field classField : classFields) {
String name = classField.getName();
String label = name;
Label labelAnnotation = classField.getAnnotation(Label.class);
if (labelAnnotation != null) {
label = labelAnnotation.value();
}
boolean fieldCreated = false;
// SelectValuesField