Class AnnotationParameterNameDiscoverer

    • Constructor Detail

      • AnnotationParameterNameDiscoverer

        public AnnotationParameterNameDiscoverer()
    • Method Detail

      • getParameterNames

        public String[] getParameterNames​(Method method)
        Description copied from interface: ParameterNameDiscoverer
        Return parameter names for this method, or null if they cannot be determined.
        Specified by:
        getParameterNames in interface ParameterNameDiscoverer
        Parameters:
        method - method to find parameter names for
        Returns:
        an array of parameter names if the names can be resolved, or null if they cannot
      • getParameterNames

        public String[] getParameterNames​(Constructor<?> ctor)
        Description copied from interface: ParameterNameDiscoverer
        Return parameter names for this constructor, or null if they cannot be determined.
        Specified by:
        getParameterNames in interface ParameterNameDiscoverer
        Parameters:
        ctor - constructor to find parameter names for
        Returns:
        an array of parameter names if the names can be resolved, or null if they cannot
      • doGetParameterNames

        protected String[] doGetParameterNames​(Annotation[][] parameterAnnotations)