Does anyone know of good general Java frameworks that have common but tedious utilities that do things like ...
ObjectUtil.equalsOrBothNull(obj1,obj2) FormatUtil.formatName(String firstName String middleName, String lastName) AddressUtil.formatAddress(address)
etc...
It seems that I always end up revising these classes. Guava libraries are the closest I have found.
http://code.google.com/p/guava-libraries/
source share