String stat = (att == null) ? "" : att.getStringValue();
att = v.findAttribute("GRIB_ensemble");
String ens = "";
if (att != null) ens = att.getStringValue();
else {
att = v.findAttribute("GRIB_ensemble_derived_type");
if (att != null) ens = att.getStringValue();
}
att = v.findAttribute("GRIB_probability_type");
String prob = (att == null) ? "" : att.getStringValue();
System.out.printf(format, v.getFullName(), level, stat, ens, prob);