getMethods abstract method

List<MethodDeclaration> getMethods()

Returns all methods declared in this class (excluding inherited methods).

Example

for (final method in clazz.getMethods()) {
  print(method.getName());
}

Implementation

List<MethodDeclaration> getMethods();