Hi there, if had a interface as below: public interface SomeClass2 { public static String staticMethod (String a, int b) { return "meow! " + a + ", " + b; } } is it possible to use the library to invoke the static method?