Package 

Object InAppPurchaseUtils

    • Method Summary

      Modifier and Type Method Description
      final static Class<?> getClass(String className) Returns the Class object associated with the class or interface with the given string name
      final static Method getMethod(Class<?> clazz, String methodName, Class<?> args) Returns a Method object that reflects the specified public member method of the class or interface represented by this Class object.
      final static Object invokeMethod(Class<?> clazz, Method method, Object obj, Object args) Invokes the underlying method represented by this Method object, on the specified object with the specified parameters.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getClass

         final static Class<?> getClass(String className)

        Returns the Class object associated with the class or interface with the given string name

      • getMethod

         final static Method getMethod(Class<?> clazz, String methodName, Class<?> args)

        Returns a Method object that reflects the specified public member method of the class or interface represented by this Class object.

      • invokeMethod

         final static Object invokeMethod(Class<?> clazz, Method method, Object obj, Object args)

        Invokes the underlying method represented by this Method object, on the specified object with the specified parameters.