Is it possible to extend the Math class and still use the Math class to call the extended method?
For example, I have a method public static double mean (LinkedList<? extends Number) I would like to call like this Math.mean(list). Is this doable? How?
Thanks.