Package net.thucydides.core.csv
Class InstanceBuilder
java.lang.Object
net.thucydides.core.csv.InstanceBuilder
Helper class for finding and invoking constructors.
-
Method Summary
Modifier and TypeMethodDescriptionstatic <T> InstanceBuilderinObject(T newObject) static <T> TinvokeConstructorFor(Class<T> clazz, Object[] constructorArgs) static <T> TnewInstanceOf(Class<T> clazz, Object... constructorArgs) voidsetPropertyValue(String property, String value)
-
Method Details
-
newInstanceOf
public static <T> T newInstanceOf(Class<T> clazz, Object... constructorArgs) throws InstantiationException, IllegalAccessException, InvocationTargetException -
invokeConstructorFor
public static <T> T invokeConstructorFor(Class<T> clazz, Object[] constructorArgs) throws InvocationTargetException, IllegalAccessException, InstantiationException -
setPropertyValue
-
inObject
-