First of all, I read erickson\'s useful reply to \"Why can’t I define a static method in a Java interface?\". This question is not about the \"why\" but about the \"how then
One solution - is make all methods non-static with requirement that class must have default constructor. Then you can instantiate it easily and call methods you need.