|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.struts2.convention.ReflectionTools
public class ReflectionTools
This class has some reflection helpers.
| Constructor Summary | |
|---|---|
ReflectionTools()
|
|
| Method Summary | ||
|---|---|---|
static boolean |
containsMethod(Class<?> klass,
String method,
Class<?>... parameterTypes)
Determines if the class given contains the method. |
|
static
|
getAnnotation(Class<?> klass,
String methodName,
Class<T> annotationClass)
Retrieves the annotation from the given method in the given class. |
|
static List<Class<?>> |
getClassHierarchy(Class<?> clazz)
Return the list of parent classes in order (Object will be at index 0) |
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public ReflectionTools()
| Method Detail |
|---|
public static boolean containsMethod(Class<?> klass,
String method,
Class<?>... parameterTypes)
klass - The class to check for the method.method - The method name.parameterTypes - The parameter types of the method.
public static <T extends Annotation> T getAnnotation(Class<?> klass,
String methodName,
Class<T> annotationClass)
klass - The class.methodName - The method.annotationClass - The annotation to get.
public static List<Class<?>> getClassHierarchy(Class<?> clazz)
clazz - class to process
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||