log.log(POILogger.WARN, "Deprecation warning: CellUtil properties map uses Short values for "
+ name + ". Should use BorderStyle enums instead.");
}
- System.out.println("BorderStyle short usage");
short code = ((Short) value).shortValue();
border = BorderStyle.valueOf(code);
}
log.log(POILogger.WARN, "Deprecation warning: CellUtil properties map uses Short values for "
+ name + ". Should use FillPatternType enums instead.");
}
- System.out.println("FillPatternType short usage");
short code = ((Short) value).shortValue();
pattern = FillPatternType.forInt(code);
}
log.log(POILogger.WARN, "Deprecation warning: CellUtil properties map used a Short value for "
+ name + ". Should use HorizontalAlignment enums instead.");
}
- System.out.println("HorizontalAlignment short usage");
short code = ((Short) value).shortValue();
align = HorizontalAlignment.forInt(code);
}
log.log(POILogger.WARN, "Deprecation warning: CellUtil properties map used a Short value for "
+ name + ". Should use VerticalAlignment enums instead.");
}
- System.out.println("VerticalAlignment usage " + name + " " + value);
short code = ((Short) value).shortValue();
align = VerticalAlignment.forInt(code);
}