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");
