Package org.springdoc.core.providers
Interface JavadocProvider
- All Known Implementing Classes:
SpringDocJavadocProvider
public interface JavadocProvider
The interface Javadoc provider.
- Author:
- bnasslashen
-
Method Summary
Modifier and TypeMethodDescriptiongetFieldJavadoc
(Field field) getMethodJavadocDescription
(Method method) Gets method description.getMethodJavadocReturn
(Method method) Gets method javadoc return.getParamJavadoc
(Method method, String name) Gets param javadoc.
-
Method Details
-
getMethodJavadocDescription
Gets method description.- Parameters:
method
- the method- Returns:
- the method description
-
getMethodJavadocReturn
Gets method javadoc return.- Parameters:
method
- the method- Returns:
- the method javadoc return
-
getParamJavadoc
Gets param javadoc.- Parameters:
method
- the methodname
- the name- Returns:
- the param javadoc
-
getFieldJavadoc
-