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

io.gsonfire.util.reflection.FieldInspector Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package io.gsonfire.util.reflection;

import java.lang.reflect.Field;

/**
 * Created by julio on 7/25/15.
 */
public class FieldInspector extends AnnotationInspector {

    @Override
    protected Field[] getDeclaredMembers(Class clazz) {
        return clazz.getDeclaredFields();
    }

    @Override
    protected Field map(Field member) {
        return member;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy