This syntax is described in the BGGA-proposal by Gilad Bracha, Neal Gafter, James Gosling, and Peter von der Ahé.
This snippet of code can be described as follows:
It takes as the second argument a function taking parameters (T, T) and returning Number (and assigns it to parameter block)
It then creates a Comparator<T> out of it. This it does by implementing the compare method by delegating it to a call to block.
Passes this comparator to the Collections.sort method.
Here comes a break down of the syntax:
public static <T> void sort(List<T> l, final {T, T=>Number} block) {
^^^^^^^^^^^^^^^^^^^^
An argument called block which is of type "function that takes two T and returns a Number".
Collections.sort(l, new Comparator<T>() {
public int compare(T arg0, T arg1) {
...
}
}
}
An ordinary call to Collections.sort with an instance of an anonymous subclass of Comparator as second argument...
...
return block.invoke(arg0, arg1);
...
...which returns the number computed by the function defined by the block argument.
Put in terms of classical Java, your snippet would correspond to something like
interface Block<T> {
public int invoke(T arg1, T arg2);
}
class Test {
public static <T> void sort(List<T> l, final Block<T> block) {
Collections.sort(l, new Comparator<T>() {
public int compare(T arg0, T arg1) {
return block.invoke(arg0, arg1);
}
});
}
}