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

io.atleon.util.FieldResolution Maven / Gradle / Ivy

There is a newer version: 0.28.3
Show newest version
package io.atleon.util;

import java.lang.reflect.Field;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Map;
import java.util.function.Function;
import java.util.stream.Collectors;

public final class FieldResolution {

    private FieldResolution() {

    }

    public static Map getAllFieldsByName(Class clazz) {
        return getAllFields(clazz).stream().collect(Collectors.toMap(Field::getName, Function.identity()));
    }

    public static Collection getAllFields(Class clazz) {
        List fields = new ArrayList<>();
        while (clazz != null) {
            for (Field field : clazz.getDeclaredFields()) {
                fields.add(field);
            }
            clazz = clazz.getSuperclass();
        }
        return fields;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy