public interface ParameterNameDiscoverer
Parameter name discovery is not always possible, but various strategies are available to try, such as looking for debug information that may have been emitted at compile time, and looking for argname annotation values.
| Modifier and Type | Method and Description |
|---|---|
String[] |
getParameterNames(Constructor<?> ctor)
Return parameter names for this constructor, or
null if they cannot be determined. |
String[] |
getParameterNames(Method method)
Return parameter names for this method, or
null if they cannot be determined. |
String[] getParameterNames(Method method)
null if they cannot be determined.method - method to find parameter names for.null if they cannot.String[] getParameterNames(Constructor<?> ctor)
null if they cannot be determined.ctor - constructor to find parameter names for.null if they cannot.Copyright © 2021 lettuce.io. All rights reserved.