static int or0(Int i) { ret i == null ? 0 : i; } static long or0(Long l) { ret l == null ? 0L : l; } static double or0(Double d) { ret d == null ? 0.0 : d; }