Package org.robolectric.shadow.api
Class Shadow
java.lang.Object
org.robolectric.shadow.api.Shadow
public class Shadow extends Object
-
Constructor Summary
Constructors Constructor Description Shadow()
-
Method Summary
Modifier and Type Method Description static void
directInitialize(Class<?> clazz)
static <R, T> R
directlyOn(Class<T> clazz, String methodName, ReflectionHelpers.ClassParameter... paramValues)
static <R> R
directlyOn(Object shadowedObject, String clazzName, String methodName, ReflectionHelpers.ClassParameter... paramValues)
static <T> T
directlyOn(T shadowedObject, Class<T> clazz)
static <R, T> R
directlyOn(T shadowedObject, Class<T> clazz, String methodName, ReflectionHelpers.ClassParameter... paramValues)
static String
directMethodName(String className, String methodName)
static <T> T
extract(Object instance)
Retrieve corresponding Shadow of the object.static <R> R
invokeConstructor(Class<? extends R> clazz, R instance, ReflectionHelpers.ClassParameter... paramValues)
static <T> T
newInstance(Class<T> clazz, Class[] parameterTypes, Object[] params)
static <T> T
newInstanceOf(Class<T> clazz)
static Object
newInstanceOf(String className)
-
Constructor Details
-
Shadow
public Shadow()
-
-
Method Details
-
extract
Retrieve corresponding Shadow of the object.- Since:
- 3.3
-
newInstanceOf
-
newInstanceOf
-
newInstance
-
directlyOn
-
directlyOn
public static <R> R directlyOn(Object shadowedObject, String clazzName, String methodName, ReflectionHelpers.ClassParameter... paramValues) -
directlyOn
public static <R, T> R directlyOn(T shadowedObject, Class<T> clazz, String methodName, ReflectionHelpers.ClassParameter... paramValues) -
directlyOn
public static <R, T> R directlyOn(Class<T> clazz, String methodName, ReflectionHelpers.ClassParameter... paramValues) -
invokeConstructor
public static <R> R invokeConstructor(Class<? extends R> clazz, R instance, ReflectionHelpers.ClassParameter... paramValues) -
directMethodName
-
directInitialize
-