// "Replace with lambda" "true-preview" import java.util.function.Function; class Test { void ab() { comparing(new Function() { public String apply(Integer pObj) { return Integer.toString(pObj); } }); } static void comparing(Function keyExtractor){} }