SyntaxFix
Write A Post
Hire A Developer
Questions
I would make the class final and every method would be static.
final
static
So the class cannot be extended and the methods can be called by Classname.methodName. If you add members, be sure that they work thread safe ;)
Classname.methodName