| Package | Description |
|---|---|
| org.springframework.util |
| Modifier and Type | Field and Description |
|---|---|
static ReflectionUtils.MethodFilter |
ReflectionUtils.USER_DECLARED_METHODS
Pre-built
ReflectionUtils.MethodFilter that matches all non-bridge non-synthetic methods
which are not declared on java.lang.Object. |
| Modifier and Type | Method and Description |
|---|---|
default ReflectionUtils.MethodFilter |
ReflectionUtils.MethodFilter.and(ReflectionUtils.MethodFilter next)
Create a composite filter based on this filter and the provided filter.
|
| Modifier and Type | Method and Description |
|---|---|
default ReflectionUtils.MethodFilter |
ReflectionUtils.MethodFilter.and(ReflectionUtils.MethodFilter next)
Create a composite filter based on this filter and the provided filter.
|
static void |
ReflectionUtils.doWithMethods(Class<?> clazz,
ReflectionUtils.MethodCallback mc,
ReflectionUtils.MethodFilter mf)
Perform the given callback operation on all matching methods of the given
class and superclasses (or given interface and super-interfaces).
|
static Method[] |
ReflectionUtils.getUniqueDeclaredMethods(Class<?> leafClass,
ReflectionUtils.MethodFilter mf)
Get the unique set of declared methods on the leaf class and all superclasses.
|
Copyright © 2025. All rights reserved.