Interface MethodDefinition
-
- All Known Implementing Classes:
MethodWithStringBody
public interface MethodDefinition
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default List<AnnotationDefinition>getAnnotations()StringgetBody()StringgetMethodName()StringgetReturnType()booleanisPublic()booleanisStatic()default List<MethodParameter>parameters()
-
-
-
Method Detail
-
getMethodName
String getMethodName()
-
getReturnType
String getReturnType()
-
getBody
String getBody()
-
getAnnotations
default List<AnnotationDefinition> getAnnotations()
-
isStatic
boolean isStatic()
-
isPublic
boolean isPublic()
-
parameters
default List<MethodParameter> parameters()
-
-