Java: Static Class?
class, java, oop, static, utility
Solution
Private constructor and static methods on a class marked as final.
Problem
I have a class full of utility functions. Instantiating an instance of it makes no semantic sense, but I still want to call its methods. What is the best way to deal with this? Static class? Abstract?