show/hide this revision's text 2 added 469 characters in body; added 19 characters in body; added 6 characters in body; deleted 112 characters in body

Maybe

I'm misunderstanding not sure exactly what the questionsituation is, but if you know you're looking to execute the static method on a class without knowing the class type (in your example, i.e. you don't know it's SomeType) shouldn't , you just be able to have the Class object), if you know the name and parameters of the method you could use reflection and do SomeType.someStaticMethod()?this:

Class c = getThisClassObjectFromSomewhere();

//myStaticMethod takes a Double and String as an argument
Method m = c.getMethod("myStaticMethod", Double.class, String.class);
Object result = m.invoke(null, 1.5, "foo");
show/hide this revision's text 1

Maybe I'm misunderstanding the question, but if you know the class (in your example, SomeType) shouldn't you just be able to do SomeType.someStaticMethod()?