getMethods abstract method
Returns all methods declared in this class (excluding inherited methods).
Example
for (final method in clazz.getMethods()) {
print(method.getName());
}
Implementation
List<MethodDeclaration> getMethods();
Returns all methods declared in this class (excluding inherited methods).
for (final method in clazz.getMethods()) {
print(method.getName());
}
List<MethodDeclaration> getMethods();