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

com.github.cukedoctor.util.ObjectUtil Maven / Gradle / Ivy

There is a newer version: 3.9.0
Show newest version
package com.github.cukedoctor.util;

import java.lang.reflect.Field;

public class ObjectUtil {

    public static Object getFieldValue(Object obj, String fieldName) throws NoSuchFieldException, IllegalAccessException {
        Field field = obj.getClass().getDeclaredField(fieldName);
        field.setAccessible(true);
        return field.get(obj);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy