Package | Description |
---|---|
com.almasb.fxgl.core.reflect |
Modifier and Type | Method and Description |
---|---|
static Method |
ClassReflection.getDeclaredMethod(Class c,
String name,
Class... parameterTypes)
Returns a
Method that represents the method declared by the supplied class which takes the supplied parameter types. |
static Method[] |
ClassReflection.getDeclaredMethods(Class c)
Returns an array of
Method containing the methods declared by the class represented by the supplied Class. |
static Method |
ClassReflection.getMethod(Class c,
String name,
Class... parameterTypes)
Returns a
Method that represents the public member method for the supplied class which takes the supplied parameter
types. |
static Method[] |
ClassReflection.getMethods(Class c)
Returns an array of
Method containing the public member methods of the class represented by the supplied Class. |
Copyright © 2017. All rights reserved.