EsotericSoftware / reflectasm

High performance Java reflection
BSD 3-Clause "New" or "Revised" License
1.53k stars 222 forks source link

Is it possible to invoke static method in interface #90

Open louisypchan opened 2 years ago

louisypchan commented 2 years ago

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?