Utility Class

https://www.vojtechruzicka.com/avoid-utility-classes/

also known as helper class, which contains just static methods, it is stateless and cannot be instantiated. It contains a bunch of related methods, so they can be reused across the application. As an example consider Apache StringUtils, CollectionUtils or java.lang.Math.

Last updated

Was this helpful?