Class BeanUtility
- java.lang.Object
-
- org.smallmind.nutsnbolts.reflection.bean.BeanUtility
-
public class BeanUtility extends Object
-
-
Constructor Summary
Constructors Constructor Description BeanUtility()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StringasGetterName(String name)static StringasIsName(String name)static StringasSetterName(String name)static Objectexecute(Object target, String methodPath, Object... values)static ObjectexecuteGet(Object target, String fieldPath, boolean nullable)static ObjectexecuteSet(Object target, String fieldPath, Object value)static ClassgetParameterClass(Method setterMethod)
-
-
-
Method Detail
-
executeGet
public static Object executeGet(Object target, String fieldPath, boolean nullable) throws BeanAccessException, BeanInvocationException
-
executeSet
public static Object executeSet(Object target, String fieldPath, Object value) throws BeanAccessException, BeanInvocationException
-
execute
public static Object execute(Object target, String methodPath, Object... values) throws BeanAccessException, BeanInvocationException
-
-