Uses of Class
com.badlogic.gdx.utils.reflect.Method
-
Packages that use Method Package Description com.badlogic.gdx.utils.reflect -
-
Uses of Method in com.badlogic.gdx.utils.reflect
Methods in com.badlogic.gdx.utils.reflect that return Method Modifier and Type Method Description static MethodClassReflection. getDeclaredMethod(java.lang.Class c, java.lang.String name, java.lang.Class... parameterTypes)Returns aMethodthat represents the method declared by the supplied class which takes the supplied parameter types.static Method[]ClassReflection. getDeclaredMethods(java.lang.Class c)Returns an array ofMethodcontaining the methods declared by the class represented by the supplied Class.static MethodClassReflection. getMethod(java.lang.Class c, java.lang.String name, java.lang.Class... parameterTypes)Returns aMethodthat represents the public member method for the supplied class which takes the supplied parameter types.static Method[]ClassReflection. getMethods(java.lang.Class c)Returns an array ofMethodcontaining the public member methods of the class represented by the supplied Class.
-