Does anybody know of a good common frameworks for Java that has common but tedious utility methods that do things like...
ObjectUtil.equalsOrBothNull(obj1,obj2)
FormatUtil.formatName(String firstName String middleName, String lastName)
AddressUtil.formatAddress(address)
etc...
It seems like I always end up re-implementing these sorts of classes. Guava-libraries is the closest thing I have found.