} else if (field.isAnnotationPresent(FieldIntegerAnnotation.class)) {
final int defaultValue = field.getAnnotation(FieldIntegerAnnotation.class).value();
fields.put(name, new FieldInteger(name, label, defaultValue));
} else if (field.isAnnotationPresent(FieldEnumAnnotation.class)) {
final String[] options = field.getAnnotation(FieldEnumAnnotation.class).value();
fields.put(name, new FieldEnum(name, label, options));
} else if (field.isAnnotationPresent(FieldMultiEnumAnnotation.class)) {
final String[] options = field.getAnnotation(FieldMultiEnumAnnotation.class).value();
fields.put(name, new FieldMultiEnum(name, label, options));
} else if (field.isAnnotationPresent(FieldWebsiteAnnotation.class)) {
fields.put(name, new FieldWebsite(name, label));