When writing utility classes in Java, what are some good guidelines to follow?
Should packges be \"util\" or \"utils\"? Is it ClassUtil or ClassUtils? When is a class a
I think that 'utils' should be the package name. The class names should specify the purpose of the logic inside it. Adding the sufix -util(s) is redundant.