I\'m wondering what is the proper way to call a static method with a signature like this:
public static Map> aggregate(Lis
As shown here, the way to call the method would be:
ClassName.aggregate(lData, "id", "ref");
where ClassName is the name of the class that the method is contained in.
ClassName