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

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

The 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 - 2025 Weber Informatics LLC | Privacy Policy