All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.reflections.scanners.FieldAnnotationsScanner Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package org.reflections.scanners;

import java.util.List;

/** scans for field's annotations */
@SuppressWarnings({"unchecked"})
public class FieldAnnotationsScanner extends AbstractScanner {
    public void scan(final Object cls) {
        final String className = getMetadataAdapter().getClassName(cls);
        List fields = getMetadataAdapter().getFields(cls);
        for (final Object field : fields) {
            List fieldAnnotations = getMetadataAdapter().getFieldAnnotationNames(field);
            for (String fieldAnnotation : fieldAnnotations) {

                if (acceptResult(fieldAnnotation)) {
                    String fieldName = getMetadataAdapter().getFieldName(field);
                    getStore().put(fieldAnnotation, String.format("%s.%s", className, fieldName));
                }
            }
        }
    }
}