/* 384 */ EnumConstantInfoImpl[] constants = new EnumConstantInfoImpl[fields.length];
/* 385 */ int i = 0;
/* 386 */ for (Field field : fields)
/* */ {
/* 388 */ AnnotationValue[] annotations = getAnnotations(field);
/* 389 */ constants[(i++)] = new EnumConstantInfoImpl(field.getName(), enumInfoImpl, annotations);
/* */ }
/* 391 */ enumInfoImpl.setEnumConstants(constants);
/* */ }
/* 393 */ else if (clazz.isAnnotation())
/* */ {