-
public class InAppPurchaseUtils
-
-
Method Summary
Modifier and Type Method Description static Class<out Object>getClass(String className)Returns the Class object associated with the class or interface with the given string name static MethodgetMethod(Class<out Object> clazz, String methodName, @Nullable() Array<Class<out Object>> args)Returns a Method object that reflects the specified public member method of the class orinterface represented by this Class object. static ObjectinvokeMethod(Class<out Object> clazz, Method method, @Nullable() Object obj, @Nullable() Array<Object> args)Invokes the underlying method represented by this Method object, on the specified object withthe specified parameters. -
-
Method Detail
-
getClass
@Nullable() static Class<out Object> getClass(String className)
Returns the Class object associated with the class or interface with the given string name
-
getMethod
@Nullable() static Method getMethod(Class<out Object> clazz, String methodName, @Nullable() Array<Class<out Object>> args)
Returns a Method object that reflects the specified public member method of the class orinterface represented by this Class object.
-
-
-
-