static java.util.List<java.lang.reflect.Field> |
AnnotationSupport.findAnnotatedFields(java.lang.Class<?> clazz,
java.lang.Class<? extends java.lang.annotation.Annotation> annotationType,
java.util.function.Predicate<java.lang.reflect.Field> predicate,
HierarchyTraversalMode traversalMode) |
Find all fields of the supplied class or interface
that are annotated or meta-annotated with the specified
annotationType and match the specified predicate , using
the supplied hierarchy traversal mode.
|
static java.util.List<java.lang.reflect.Method> |
AnnotationSupport.findAnnotatedMethods(java.lang.Class<?> clazz,
java.lang.Class<? extends java.lang.annotation.Annotation> annotationType,
HierarchyTraversalMode traversalMode) |
Find all methods of the supplied class or interface
that are annotated or meta-annotated with the specified
annotationType .
|
static java.util.List<java.lang.reflect.Field> |
ReflectionSupport.findFields(java.lang.Class<?> clazz,
java.util.function.Predicate<java.lang.reflect.Field> predicate,
HierarchyTraversalMode traversalMode) |
Find all fields of the supplied class or interface
that match the specified predicate .
|
static java.util.List<java.lang.reflect.Method> |
ReflectionSupport.findMethods(java.lang.Class<?> clazz,
java.util.function.Predicate<java.lang.reflect.Method> predicate,
HierarchyTraversalMode traversalMode) |
Find all methods of the supplied class or interface
that match the specified predicate .
|