Reports lambda expressions which can be replaced with anonymous class.

The quick fix expands lambda expression to the anonymous class.

For example the lambda expression s -> System.out.println(s) can be expanded to the following class:

new Consumer<String>() {
  @Override
  public void accept(String s) {
    System.out.println(s);
  }
}