Our project use google guava, apache commons and maybe other libraries with common tasks and I was wondering if these libraries contain methods which does null safe conversions (object to number, object to string). As for now I wrote myself some helper methods, e.g :
int parseInteger(Object obj) {
if (obj!= null) {
if (obj instanceof Integer) return (Integer) obj;
if (obj instanceof Long) return ((Long) obj).intValue();
return Integer.parseInt(obj.toString());
} else {
return 0;
}
}
parseInteger(null)andparseInteger(0L)have the same result? Lucky you ;) – Andreas_D Jun 25 '12 at 7:06if (obj instanceof Number) return ((Number) obj).intValue();instead of two separateInteger/Longchecks. – Tomasz Nurkiewicz Jun 25 '12 at 7:08