Class Introspection
- java.lang.Object
-
- org.assertj.core.util.introspection.Introspection
-
public final class Introspection extends Object
Utility methods related to JavaBeans Introspection.- Author:
- Alex Ruiz
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MethodgetPropertyGetter(String propertyName, Object target)Returns the getterMethodfor a property matching the given name in the given object.
-
-
-
Method Detail
-
getPropertyGetter
public static Method getPropertyGetter(String propertyName, Object target)
Returns the getterMethodfor a property matching the given name in the given object.- Parameters:
propertyName- the given property name.target- the given object.- Returns:
- the getter
Methodfor a property matching the given name in the given object. - Throws:
NullPointerException- if the given property name isnull.IllegalArgumentException- if the given property name is empty.NullPointerException- if the given object isnull.IntrospectionError- if the getter for the matching property cannot be found or accessed.
-
-